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方法”
真是学无止境!!