欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

解决php json_encode中文转码、乱码问题

程序员文章站 2022-03-29 20:32:04
...

例子,php json_encode中文转码、乱码问题。

  1. // 防止json中文转码

  2. function jsonEncodeWithCN($data) {
  3. return preg_replace("/\\\u([0-9a-f]{4})/ie", "iconv('UCS-2BE', 'UTF-8', pack('H4', '$1'))", json_encode($data));
  4. }
  5. $arr = array('a'=>'测试', b=>'hello');

  6. echo jsonEncodeWithCN($arr);

复制代码