Skip to content

Instantly share code, notes, and snippets.

@kamekoopa
Created October 31, 2011 09:57
Show Gist options
  • Save kamekoopa/1327211 to your computer and use it in GitHub Desktop.
Save kamekoopa/1327211 to your computer and use it in GitHub Desktop.
環境に依存しない文字列のバイト数取得関数
<?php
/**
* 環境に依存しない文字列のバイト数取得関数
*/
function getByteCount($str){
return strlen(bin2hex($str)) / 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment