Skip to content

Instantly share code, notes, and snippets.

@ProjectCleverWeb
Created June 10, 2013 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ProjectCleverWeb/42c1c8fe5f504965487e to your computer and use it in GitHub Desktop.
Save ProjectCleverWeb/42c1c8fe5f504965487e to your computer and use it in GitHub Desktop.
<?php
function _strlen($str, $use_encoding=FALSE, $encoding='utf8'){
if($use_encoding){
return mb_strlen($str, $encoding);
}
return strlen($str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment