当前位置:首页 > PHP教程 > php应用 > 列表

php判断是否为json格式的方法

发布:smiling 来源: PHP粉丝网  添加日期:2020-10-12 15:34:56 浏览: 评论:0 

这篇文章主要介绍了php判断是否为json格式的方法,需要的朋友可以参考下,首先要记住json_encode返回的是字符串, 而json_decode返回的是对象。

判断数据不是JSON格式:

  1. function is_not_json($str){   
  2.    return is_null(json_decode($str)); 

判断数据是合法的json数据: (PHP版本大于5.3),代码如下:

  1. function is_json($string) { www.phpfensi.com 
  2.  json_decode($string); 
  3.  return (json_last_error() == JSON_ERROR_NONE); 

json_last_error()函数返回数据编解码过程中发生的错误

注意: json编解码所操作字符串必须是UTF8的

例子代码如下:

  1. /** 
  2. * 解析json串 
  3. * @param type $json_str 
  4. * @return type 
  5. */ 
  6. function analyJson($json_str) { 
  7. $json_str = str_replace('\\'''$json_str); 
  8. $out_arr = array(); 
  9. preg_match('/{.*}/'$json_str$out_arr); 
  10. if (!emptyempty($out_arr)) { 
  11. $result = json_decode($out_arr[0], TRUE); 
  12. else { 
  13. return FALSE; 
  14. return $result
如果不是json则返回false

Tags: php判断是否为json

分享到: