首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

PHP判断字符串编码是不是为utf8的函数

2012-09-09 
PHP判断字符串编码是否为utf8的函数http://it.oyksoft.com/post/49/// Returns true if $string is valid

PHP判断字符串编码是否为utf8的函数
http://it.oyksoft.com/post/49/

// Returns true if $string is valid UTF-8 and false otherwise.function is_utf8($word){if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$word) == true){return true;}else{return false;}} // function is_utf8

热点排行