php7 解析unicode方法 php7 解析unicode方法 2017 年 7 月 10 日 北漂小兄弟 Comments 1 comment php7开始支持unicode function parse($string) { $string = str_replace('\u', '}\u{', $string); $string = ltrim($string, "}"); $string.= "}"; echo $string; } 打赏赞(1)分享
One thought on “php7 解析unicode方法”
真是学无止境!!