php语言中使用json的技巧及json的实现代码详解

前端技术 2023/09/04 PHP

目前,JSON已经成为最流行的数据交换格式之一,各大网站的API几乎都支持它。

我写过一篇《数据类型和JSON格式》,探讨它的设计思想。今天,我想总结一下PHP语言对它的支持,这是开发互联网应用程序(特别是编写API)必须了解的知识。

从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。

一、json_encode()

该函数主要用来将数组和对象,转换为json格式。先看一个数组转换的例子:

$arr = array (\'a\'=>1,\'b\'=>2,\'c\'=>3,\'d\'=>4,\'e\'=>5);
echo json_encode($arr);

结果为

{\"a\":1,\"b\":2,\"c\":3,\"d\":4,\"e\":5}

再看一个对象转换的例子:

$obj->body      = \'another post\';
$obj->id       = 21;
$obj->approved    = true;
$obj->favorite_count = 1;
$obj->status     = NULL;
echo json_encode($obj);

结果为

{
    \"body\":\"another post\", 
    \"id\":21,
    \"approved\":true,
    \"favorite_count\":1,
    \"status\":null
}

由于json只接受utf-8编码的字符,所以json_encode()的参数必须是utf-8编码,否则会得到空字符或者null。当中文使用GB2312编码,或者外文使用ISO-8859-1编码的时候,这一点要特别注意。

二、索引数组和关联数组

PHP支持两种数组,一种是只保存\"值\"(value)的索引数组(indexed array),另一种是保存\"名值对\"(name/value)的关联数组(associative array)。

由于javascript不支持关联数组,所以json_encode()只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式。

比如,现在有一个索引数组

$arr = Array(\'one\', \'two\', \'three\');
echo json_encode($arr);

结果为:

[\"one\",\"two\",\"three\"]

如果将它改为关联数组:

$arr = Array(\'1\'=>\'one\', \'2\'=>\'two\', \'3\'=>\'three\');
echo json_encode($arr);

结果就变了:

{\"1\":\"one\",\"2\":\"two\",\"3\":\"three\"}

注意,数据格式从\"[]\"(数组)变成了\"{}\"(对象)。

如果你需要将\"索引数组\"强制转化成\"对象\",可以这样写

json_encode( (object)$arr );

或者

json_encode ( $arr, JSON_FORCE_OBJECT );

三、类(class)的转换

下面是一个PHP的类:

class Foo {
    const   ERROR_CODE = \'404\';
    public  $public_ex = \'this is public\';
    private  $private_ex = \'this is private!\';
    protected $protected_ex = \'this should be protected\';
    public function getErrorCode() {
      return self::ERROR_CODE;
    }
}

现在,对这个类的实例进行json转换:

$foo = new Foo;
$foo_json = json_encode($foo);
echo $foo_json;

输出结果是

{\"public_ex\":\"this is public\"}

可以看到,除了公开变量(public),其他东西(常量、私有变量、方法等等)都遗失了。

四、json_decode()

该函数用于将json文本转换为相应的PHP数据结构。下面是一个例子:

$json = \'{\"foo\": 12345}\';  
$obj = json_decode($json); 
print $obj->{\'foo\'}; // 12345

通常情况下,json_decode()总是返回一个PHP对象,而不是数组。比如:

$json = \'{\"a\":1,\"b\":2,\"c\":3,\"d\":4,\"e\":5}\';  
var_dump(json_decode($json));

结果就是生成一个PHP对象:

object(stdClass)#1 (5) {
  
    [\"a\"] => int(1)
    [\"b\"] => int(2)
    [\"c\"] => int(3)
    [\"d\"] => int(4)
    [\"e\"] => int(5)
  
}

如果想要强制生成PHP关联数组,json_decode()需要加一个参数true:

$json = \'{\"a\":1,\"b\":2,\"c\":3,\"d\":4,\"e\":5}\';
var_dump(json_decode($json,true));

结果就生成了一个关联数组:

array(5) {
  
     [\"a\"] => int(1)
     [\"b\"] => int(2)
     [\"c\"] => int(3)
     [\"d\"] => int(4)
     [\"e\"] => int(5)
  
} 

五、json_decode()的常见错误

下面三种json写法都是错的,你能看出错在哪里吗?

$bad_json = \"{ \'bar\': \'baz\' }\";
$bad_json = \'{ bar: \"baz\" }\';  
$bad_json = \'{ \"bar\": \"baz\", }\';

对这三个字符串执行json_decode()都将返回null,并且报错。

第一个的错误是,json的分隔符(delimiter)只允许使用双引号,不能使用单引号。第二个的错误是,json名值对的\"名\"(冒号左边的部分),任何情况下都必须使用双引号。第三个的错误是,最后一个值之后不能添加逗号(trailing comma)。

另外,json只能用来表示对象(object)和数组(array),如果对一个字符串或数值使用json_decode(),将会返回null。

var_dump(json_decode(\"Hello World\")); //null

下面给大家介绍哦php语言的json实现

由于开发一个ajax file manager for web开源项目,数据交换使用的json格式,后来发现在低版本的php上运行会有问题,仔细调试发现json_decode和json_encode无法正常工作,于是查阅资料,发现低版本的php没有实现这两个函数,为了兼容性,我只好自己实现一个php版的json编码解码代码,并保证和json2.js的一致,测试调试并通过,现在将其公布出来,供有相同需求的同学使用:

<?php 
/* * **************************************************************************** 
 * $base: $ 
 * 
 * $Author: $ 
 *   Berlin Qin 
 * 
 * $History: base.js $ 
 *   Berlin Qin  //     created 
 * 
 * $contacted 
 *   webfmt@gmail.com 
 *   www.webfmt.com 
 * 
 * *************************************************************************** */ 
/* =========================================================================== 
 * license 
 * 
 * 、Open Source Licenses 
 * webfmt is distributed under the GPL, LGPL and MPL open source licenses. 
 * This triple copyleft licensing model avoids incompatibility with other open source licenses. 
 * These Open Source licenses are specially indicated for: 
 *  Integrating webfmt into Open Source software; 
 *  Personal and educational use of webfmt; 
 *  Integrating webfmt in commercial software, 
 * taking care of satisfying the Open Source licenses terms, 
 *  while not able or interested on supporting webfmt and its development. 
 * 
 * 、Commercial License – fbis source Closed Distribution License - CDL 
 * For many companies and products, Open Source licenses are not an option. 
 * This is why the fbis source Closed Distribution License (CDL) has been introduced. 
 * It is a non-copyleft license which gives companies complete freedom 
 * when integrating webfmt into their products and web sites. 
 * This license offers a very flexible way to integrate webfmt in your commercial application. 
 * These are the main advantages it offers over an Open Source license: 
 *   Modifications and enhancements doesn\'t need to be released under an Open Source license; 
 *   There is no need to distribute any Open Source license terms alongside with your product 
 * and no reference to it have to be done; 
 *   No references to webfmt have to be done in any file distributed with your product; 
 *   The source code of webfmt doesn\'t have to be distributed alongside with your product; 
 *   You can remove any file from webfmt when integrating it with your product. 
 * The CDL is a lifetime license valid for all releases of webfmt published during 
 * and before the year following its purchase. 
 * It\'s valid for webfmt releases also. It includes year of personal e-mail support. 
 * 
 * ************************************************************************************************************************************************* */ 
function jsonDecode($json) 
{ 
  $result = array(); 
  try 
  { 
    if (PHP_VERSION_ID > ) 
    { 
      $result = (array) json_decode($json); 
    } 
    else 
    { 
      $json = str_replace(array(\"\\\\\\\\\", \"\\\\\\\"\"), array(\"&#;\", \"&#;\"), $json); 
      $parts = preg_split(\"@(\\\"[^\\\"]*\\\")|([\\[\\]\\{\\},:])|\\s@is\", $json, -, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); 
      foreach ($parts as $index =&gt; $part) 
      { 
        if (strlen($part) == ) 
        { 
          switch ($part) 
          { 
            case \"[\": 
            case \"{\": 
              $parts[$index] = \"array(\"; 
              break; 
            case \"]\": 
            case \"}\": 
              $parts[$index] = \")\"; 
              break; 
            case \":\": 
              $parts[$index] = \"=&gt;\"; 
              break; 
            case \",\": 
              break; 
            default: 
              break; 
          } 
        } 
      } 
      $json = str_replace(array(\"&#;\", \"&#;\", \"$\"), array(\"\\\\\\\\\", \"\\\\\\\"\", \"\\\\$\"), implode(\"\", $parts)); 
      $result = eval(\"return $json;\"); 
    } 
  } 
  catch (Exception $e) 
  { 
    $result = array(\"error\" =&gt; $e-&gt;getCode()); 
  } 
  return $result; 
} 
function valueTostr($val) 
{ 
  if (is_string($val))  
  { 
    $val = str_replace(\'\\\"\', \"\\\\\\\"\", $val); 
    $val = str_replace(\"\\\\\", \"\\\\\\\\\", $val); 
    $val = str_replace(\"/\", \"\\\\/\", $val); 
    $val = str_replace(\"\\t\", \"\\\\t\", $val); 
    $val = str_replace(\"\\n\", \"\\\\n\", $val); 
    $val = str_replace(\"\\r\", \"\\\\r\", $val); 
    $val = str_replace(\"\\b\", \"\\\\b\", $val); 
    $val = str_replace(\"\\f\", \"\\\\f\", $val); 
    return \'\"\' . $val . \'\"\'; 
  } 
  elseif (is_int($val)) 
    return sprintf(\'%d\', $val); 
  elseif (is_float($val)) 
    return sprintf(\'%F\', $val); 
  elseif (is_bool($val)) 
    return ($val &#63; \'true\' : \'false\'); 
  else 
    return \'null\'; 
} 
function jsonEncode($arr) 
{ 
  $result = \"{}\"; 
  try 
  { 
    if (PHP_VERSION_ID &gt; ) 
    { 
      $result = json_encode($arr); 
    } 
    else 
    { 
      $parts = array(); 
      $is_list = false; 
      if (!is_array($arr)) 
      { 
        $arr = (array) $arr; 
      } 
      $end = count($arr) - ; 
      if (count($arr) &gt; ) 
      { 
        if (is_numeric(key($arr))) 
        { 
          $result = \"[\";  
          for ($i = ; $i &lt; count($arr); $i++) 
          { 
            if (is_array($arr[$i])) 
            { 
              $result = $result . jsonEncode($arr[$i]); 
            } 
            else 
            { 
              $result = $result . valueTostr($arr[$i]); 
            } 
            if ($i != $end) 
            { 
              $result = $result . \",\"; 
            } 
          } 
          $result = $result . \"]\"; 
        } 
        else 
        { 
          $result = \"{\";  
          $i = ; 
          foreach ($arr as $key =&gt; $value) 
          { 
            $result = $result . \'\"\' . $key . \'\":\'; 
            if (is_array($value)) 
            { 
              $result = $result . jsonEncode($value); 
            } 
            else 
            { 
              $result = $result . valueTostr($value); 
            } 
            if ($i != $end) 
            { 
              $result = $result . \",\"; 
            } 
            $i++; 
          } 
          $result = $result . \"}\"; 
        } 
      } 
      else 
      { 
        $result = \"[]\"; 
      } 
    } 
  } 
  catch (Exception $e) 
  { 
  } 
  return $result; 
} 
&#63;&gt; </pre>
</div>
<p>如果使用过程有什么问题,可以给我email.欢迎大家指出错误!</p>

</div>
</section>
<script type=\"text/javascript\">
(function() {
	var s = \"_\" + Math.random().toString(36).slice(2);
	document.write(\'<div style=\"\" id=\"\' + s + \'\"></div>\');
	(window.slotbydup = window.slotbydup || []).push({
		id: \"u4263905\",
		container: s
	});
})();
</script>
<section class=\"xgwz\">
<b>【热门文章】</b>
<ul>

 <li><a href=\"/b.php/62324.html\">Mysql日志文件和日志类型介绍</a></li><li><a href=\"/b.php/62325.html\">C#实现简单的汽车租赁系统</a></li><li><a href=\"/b.php/62326.html\">PHP对象递归引用造成内存泄漏分析</a></li><li><a href=\"/b.php/62327.html\">使用Mac自带计算器计算汇率(适合接触外币的朋友)</a></li><li><a href=\"/b.php/62328.html\">asp.net中WebResponse 跨域访问实例代码</a></li><li><a href=\"/b.php/62329.html\">win10 th2正式版重新上线 安装卡在44%的问题依然没有解决</a></li><li><a href=\"/b.php/62330.html\">Cocos2d-x 3.0多线程异步加载资源实例</a></li><li><a href=\"/b.php/62331.html\">Win10 Mobile预览版10581更新内容大全</a></li><li><a href=\"/b.php/62332.html\">MySQL数据库事务隔离级别介绍(Transaction Isolation Level)</a></li><li><a href=\"/b.php/62333.html\">android表格效果之ListView隔行变色实现代码</a></li><li><a href=\"/b.php/62334.html\">php三维数组去重(示例代码)</a></li><li><a href=\"/b.php/62335.html\">深入剖析浏览器退出之后php还会继续执行么</a></li><li><a href=\"/b.php/62336.html\">win7旗舰版系统玩游戏经常出现exe已经停止工作错误的的四种解决方法</a></li><li><a href=\"/b.php/62337.html\">win10邮件应用怎么用?Win10内置邮件应用使用方法</a></li><li><a href=\"/b.php/62338.html\">C++ 动态创建按钮及 按钮的消息响应</a></li><li><a href=\"/b.php/62339.html\">Android基于Service的音乐播放器</a></li><li><a href=\"/b.php/62340.html\">PHP扩展开发入门教程</a></li><li><a href=\"/b.php/62341.html\">使VirtualBox下CentOS中的文件与宿主机实现共享</a></li><li><a href=\"/b.php/62342.html\">怎么查看自己MAC电脑上的IP地址和MAC地址</a></li><li><a href=\"/b.php/62343.html\">epel源报错解决汇总</a></li><li><a href=\"/b.php/62344.html\">win10 10074最新预览版Aero特效回归</a></li><li><a href=\"/b.php/62345.html\">php实现的SESSION类</a></li><li><a href=\"/b.php/62346.html\">C#实现的JS操作类实例</a></li><li><a href=\"/b.php/62347.html\">PHP中4个加速、缓存扩展的区别和选用建议</a></li></ul>
</section>


  <section class=\"xgwz\">
  <b>【热门文章】</b>
  <ul>
 <li><a href=\"/c.php/13165.html\">android/ios客户端怎么获得上传图片的token</a></li><li><a href=\"/c.php/13166.html\">如何通过jquery获得div元素的translateY值</a></li><li><a href=\"/c.php/13167.html\">手机端jquery使用slideDown有卡顿感</a></li><li><a href=\"/c.php/13168.html\">网站的路由规则是什么?</a></li><li><a href=\"/c.php/13169.html\">前端是否有办法判断img的图无法加载?</a></li><li><a href=\"/c.php/13170.html\">请问如何选择linux下jdk的版本,好多的jdk不知道如何选择,我系统的redhat32位的</a></li><li><a href=\"/c.php/13171.html\">一个C语言的指针问题 望大神详细解答下~谢谢</a></li><li><a href=\"/c.php/13172.html\">ON UPDATE CURRENT_TIMESTAMP 无效</a></li><li><a href=\"/c.php/13173.html\">angularjs中如何优雅的按需加载</a></li><li><a href=\"/c.php/13174.html\">idea如何在一个web项目下引入struts2的源码?</a></li><li><a href=\"/c.php/13175.html\">如何为下拉菜单选定一个默认项目,并且此项目不会出现在下拉列表里?</a></li><li><a href=\"/c.php/13176.html\">如何设置ios app应用名称?</a></li><li><a href=\"/c.php/13177.html\">想学ThinkPHP,请问是该学3.2还是5.0呢?</a></li><li><a href=\"/c.php/13178.html\">关于 Android 监听某个 View 之外的触摸事件关闭该 View</a></li><li><a href=\"/c.php/13179.html\">ipad 显示输入法的时候显示问题</a></li><li><a href=\"/c.php/13180.html\">html 表头 thead的position设置 fixed 后字段标题宽度不和内容宽度等宽怎么解决呢?</a></li><li><a href=\"/c.php/13181.html\">面向过程编程和函数式编程有什么区别?</a></li><li><a href=\"/c.php/13182.html\">javascript 有没有php中的exit()函数呢?</a></li><li><a href=\"/c.php/13183.html\">typecho安装成功后访问404(apache)</a></li><li><a href=\"/c.php/13184.html\">第一次接触kohana求资料</a></li></ul>
</section>


<section class=\"cont pl\" id=\"comment\"><b></b>

<div id=\"SOHUCS\" sid=\"art_104965\"></div>
</section>
<div class=\"search\">
<form action=\"http://zhannei.baidu.com/cse/search\" method=\"get\" target=\"_blank\" class=\"bdcs-search-form\" id=\"bdcs-search-form\">
		<input name=\"s\" value=\"12351952642737355179\" type=\"hidden\">
        <input name=\"entry\" value=\"1\" type=\"hidden\">
        <input name=\"ie\" value=\"gbk\" type=\"hidden\">
        <input name=\"nsid\" value=\"1\" type=\"hidden\">
     
<input type=\"text\" placeholder=\"请输入您感兴趣的关键字\" value=\"\" id=\"search_txt1\" maxlength=\"18\" class=\"search_txt\" name=\"q\">
<input class=\"search_btn\" value=\"搜 索\" type=\"submit\">
</form>
</div>
<nav class=\"nav-foot\">
<ul>

   <li><a href=\"/jiaotong/huoche/\">火车</a></li>
         
          <li><a href=\"/jiaotong/gaotie/\">高铁</a></li>
         
         <li><a href=\"/jiaotong/qiche/\">汽车</a></li>
          <li><a href=\"/jiaotong/gongjiao/\">公交</a></li>
         
          <li><a href=\"/jiaotong/zijia/\">自驾</a></li>
         
          <li><a href=\"/jiaotong/licheng/\">里程</a></li>
 <li> <a href=\"/jiaotong/jingdian/\">景点</a></li>
         
          <li><a href=\"/jiaotong/gonglue/\">攻略</a></li>
          <li><a href=\"/jiaotong/wen/\">问路</a></li>
          <li><a href=\"/\">计算机</a></li>
         
</ul>
<ul>
<li><a href=\"/\">首页</a></li>
<li><a href=\"/jiaotong/huoche/\">火车</a></li>
         
          <li><a href=\"/jiaotong/gaotie/\">高铁</a></li>
         
         <li><a href=\"/jiaotong/qiche/\">汽车</a></li>
          <li><a href=\"/jiaotong/gongjiao/\">公交</a></li>
     
</ul>
</nav>

<footer class=\"footer-min\">
<div class=\"app\">
<a href=\"javascript:void(0)\" class=\"pc\">电脑版</a> - <a href=\"/\">返回首页</a></div>
<div class=\"copyright\">Copyright &copy;2017 <a href=\"/\">交通频道</a> All Rights Reserved</div>
</footer>

<div class=\"clearfix\"></div>
<div class=\"asd\"><span id=\"asd-footer\" class=\"jbTestPos\"><script>gx(4);</script></span></div>
<script>
var path_url=\"/b.php/93529.html\";
</script>

<script type=\"text/javascript\" src=\"/img/jquery-1.10.2.min.js\"></script>
<script type=\"text/javascript\" src=\"/img/menuclick.js\"></script>

<br>
<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement(\"script\");
  hm.src = \"https://hm.baidu.com/hm.js?4e18701aa680bab2e8eb968e32500cf0\";
  var s = document.getElementsByTagName(\"script\")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>

</div>


</body>
</html>

本文地址:https://www.stayed.cn/item/10211

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。