当前位置:Gxlcms > PHP教程 > php中文转unicode

php中文转unicode

时间:2021-07-01 10:21:17 帮助过:18人阅读

<无详细内容>
  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. }, '中文abc');

人气教程排行