Home > Backend Development > PHP Tutorial > php Chinese to unicode

php Chinese to unicode

WBOY
Release: 2016-07-25 08:47:27
Original
809 people have browsed it
  1. echo $script = preg_replace_callback("/[x{4e00}-x{9fa5}]/iu",function($match){
  2. return 'u' . (String) bin2hex(iconv('UTF- 8', 'UCS-2', $match[0]));
  3. }, 'Chinese abc');
Copy code


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