json_encode 处理后的数据是null

时间:2024-11-23 19:37:56

原因: json_encode($str) 中的字符串 必须是 utf-8的格式:

json_encode 处理后的数据是null

--------------------------------

问题描述:

返回的json数据:

 <?php
$array = array();
$rows = $parameter["list"];
$User = $parameter["User"];
$userId = $parameter["userId"];
$data = '';
$data.= '
<table class="table table-striped table-hover">
<tbody>';
foreach ($rows["rows"] as $row){
$data.= '<tr>
<td width="40px"><input type="checkbox" name="checkItem" value="'.$row->id.'" /></td>';
$data.= '<td width="200px">'.BaseUtil::setEntities($row->title).'</td>';
$User->getDataById($row->userId);
$data.= '<td width="200px">'.BaseUtil::setEntities($User->userName).'</td>';
$data.= '<td width="200px">'.'<img style="width:100px;" src="'.UPLOAD_HTTP.$row->icon.'"/>'.'</td>';
$data.= '<td width="200px">'.BaseUtil::setEntities($row->orderBy).'</td>';
$data.= '<td width="200px">'.BaseUtil::setEntities($row->isOpenEnum[$row->isOpen]).'</td>';
$data.= '<td width="200px">
<button type="button" class="btn btn-success btn-sm" onclick="base.addTab(\'知识点管理\',\'action.php?c=KnowledgeProxy&a=index&courseId='.$row->id.'\',\'课程管理\')">
<span class="glyphicon glyphicon-pencil" style="color:#fff; cursor:pointer;"></span>&nbsp;
知识点管理
</button>
</td>';
$data.= '<td width="100px">
<span class="table-list-btn glyphicon glyphicon-edit" title="编辑" style="color:#2e6da4; cursor:pointer;" onclick="base.showCourseUpdate('.$row->id.')"></span>&nbsp;
<span class="table-list-btn glyphicon glyphicon-trash" title="删除" style="color:#d43f3a; cursor:pointer;" onclick="base.removeCourse('.$row->id.')"></span>&nbsp;
</td>
</tr>';
}
$data.= '</tbody></table>';
$array ["data"] = $data;
$array ["total"] = $rows ["total"];
echo BaseUtil::toJson($array);
?>
setEntities 方法:
 /**
* 转字符换为实体
*
* @param unknown $string
* @return string
*/
public static function setEntities($string) {
return htmlentities ( $string);
}

出现的问题是 :

1)在公司里面 返回的json数据是正常的 . 例如:

  json_encode 处理后的数据是null

2) 但是如果 是在家里 ,就出现错误. data 是null

{data: null , total:3}

同样的代码 ,只是因为在公司和 家中的php环境不同 就出现了不同的结果.

-----------

测试如果不使用:BaseUtil::setEntities($User->userName) 处理数据 ,直接用$User->userName 的话,在家中 就可以正常使用了.

BaseUtil::setEntities 是对函数 htmlentities的封装.

 /**
* 转字符换为实体
*
* @param unknown $string
* @return string
*/
public static function setEntities($string) {
return htmlentities ( $string );
}

查阅php手册中关于 htmlentities的描述:

json_encode 处理后的数据是null

json_encode 处理后的数据是null

可见,htmlentities 是要设置转换的格式的, 如果没有设置, 默认读取 php配置文件中的 default_charset;

同时在 php 5.4 之后  ,默认的转码为 utf-8 .

同时 ,json_encode 要求 字符串必须是utf-8的.

-------

所以问题 就是 我公司的电脑的php版本大于 5.4 ,使用 封装的BaseUtil::setEntities 自动转为 utf-8 ; 家中的电脑的php版本 低于5.4

----

解决办法:

第一: 将家中电脑的php.ini  的 default_charset 设置为 utf-8 , 但是没有起作用.

第二: 重写 BaseUtil::setEntities ,指定格式 . 此时家中 可以正常使用了.

 /**
* 转字符换为实体
*
* @param unknown $string
* @return string
*/
public static function setEntities($string) {
return htmlentities ( $string, ENT_COMPAT , 'utf-8' );
}

相关文章