Skip to content

Instantly share code, notes, and snippets.

@rafasashi
Created April 14, 2015 11:58
Show Gist options
  • Save rafasashi/5c39c972aa43edb74c35 to your computer and use it in GitHub Desktop.
Save rafasashi/5c39c972aa43edb74c35 to your computer and use it in GitHub Desktop.
function custom_substr($content='',$pos_start=0,$num_char=1){
$substr='';
if(function_exists('mb_substr')){
$substr=mb_substr($content,$pos_start,$num_char,CHARSET);
}
else{
$substr=substr($content,$pos_start,$num_char);
}
return $substr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment