#PHP json_encode转化数据失败#

1:使用json_encode 转化一个数组成json字符串,结果为空

  解决方案:使用json_last_error_msg() 检查错误
   例如:$ssssss= json_last_error_msg();
         print_r( $ssssss);


  出现提示 
  json_encode 报错 Inf and NaN cannot be JSON encoded 

  解决方案
   json_encode(unserialize(str_replace(array('NAN;','INF;'),'0;',serialize($res))));

你可能感兴趣的:(php知识库,Linux运维)