PHP json_encode中文乱码问题的解决办法

2015-01-24信息快讯网

这篇文章介绍了PHP json_encode中文乱码问题的解决办法,有需要的朋友可以参考一下

下面的PHP代码可以解决以下问题:
1.json_encode UTF8码中文后的字符串不可阅读
2.json_encode 多级数组中文乱码问题
3.json_encode 数组中包含换行时错误问题
4.json_encode 数组中键为中文的问题
function _encode($arr)
{
  $na = array();
  foreach ( $arr as $k => $value ) {  
    $na[_urlencode($k)] = _urlencode ($value);  
  }
  return addcslashes(urldecode(json_encode($na)),"\\r\\n");
}

function _urlencode($elem)
{
  if(is_array($elem)){
    foreach($elem as $k=>$v){
      $na[_urlencode($k)] = _urlencode($v);
    }
    return $na;
  }
  return urlencode($elem);
}
Windows和Linux中php代码调试工具Xdebug的安装与配置详解
codeigniter框架The URI you submitted has disallowed characters错误解决方法
PHP FATAL ERROR: CALL TO UNDEFINED FUNCTION BCMUL()解决办法
PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法
yii框架builder、update、delete使用方法
PHP include任意文件或URL介绍
CodeIgniter框架提示Disallowed Key Characters的解决办法
codeigniter中测试通过的分页类示例
php使用json_encode对变量json编码
PHP包含文件函数include、include_once、require、require_once区别总结
codeigniter自带数据库类使用方法说明
Server.HTMLEncode让代码在页面里显示为源代码
php数组转换js数组操作及json_encode的用法详解
php json_encode值中大括号与花括号区别
PHP函数之日期时间函数date()使用详解
分享PHP header函数使用教程
php增删改查示例自己写的demo
phpmyadmin config.inc.php配置示例
完美解决PHP中的Cannot modify header information 问题
CodeIgniter上传图片成功的全部过程分享
浅析PHP原理之变量(Variables inside PHP)
请离开include_once和require_once
实测在class的function中include的文件中非php的global全局环境
浅析PHP中的UNICODE 编码与解码
解析如何去掉CodeIgniter URL中的index.php
解析func_num_args与func_get_args函数的使用
解析php框架codeigniter中如何使用框架的session
PHP中mb_convert_encoding与iconv函数的深入解析
解析CodeIgniter自定义配置文件
PHP rawurlencode与urlencode函数的深入分析
©2014-2024 dbsqp.com