Home > Backend Development > PHP Tutorial > PHP判断字符串编码是不是为utf8的函数

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

WBOY
Release: 2016-06-13 10:38:28
Original
828 people have browsed it

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
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template