Skip to content

Instantly share code, notes, and snippets.

@rafasashi
Created April 14, 2015 11:55
Show Gist options
  • Save rafasashi/c64342645b64197e75d0 to your computer and use it in GitHub Desktop.
Save rafasashi/c64342645b64197e75d0 to your computer and use it in GitHub Desktop.
function count_char($str='',$char=''){
$count=0;
if(function_exists('mb_substr_count')){
$count=mb_substr_count($str,$char);
}
else{
$count=substr_count($str,$char);
}
return $count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment