Skip to content

Instantly share code, notes, and snippets.

@GeHou
Last active July 4, 2016 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save GeHou/4372486 to your computer and use it in GitHub Desktop.
Save GeHou/4372486 to your computer and use it in GitHub Desktop.
php:is_utf8
<?php
function is_utf8($str) {
$temp_str = @iconv('utf-8', 'utf-8', $str);
if ($str === $temp_str) {
return 'utf8';
} else {
return 'gbk';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment