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

 更新时间:2015年10月30日 13:43  点击:3374

目前,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 => $part)       {         if (strlen($part) == )         {           switch ($part)           {             case "[":             case "{":               $parts[$index] = "array(";               break;             case "]":             case "}":               $parts[$index] = ")";               break;             case ":":               $parts[$index] = "=>";               break;             case ",":               break;             default:               break;           }         }       }       $json = str_replace(array("&#;", "&#;", "$"), array("////", "///"", "//$"), implode("", $parts));       $result = eval("return $json;");     }   }   catch (Exception $e)   {     $result = array("error" => $e->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 ? 'true' : 'false');   else     return 'null'; } function jsonEncode($arr) {   $result = "{}";   try   {     if (PHP_VERSION_ID > )     {       $result = json_encode($arr);     }     else     {       $parts = array();       $is_list = false;       if (!is_array($arr))       {         $arr = (array) $arr;       }       $end = count($arr) - ;       if (count($arr) > )       {         if (is_numeric(key($arr)))         {           $result = "[";            for ($i = ; $i < 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 => $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; } ?> 

如果使用过程有什么问题,可以给我email.欢迎大家指出错误!

[!--infotagslink--]

相关文章

  • 图解PHP使用Zend Guard 6.0加密方法教程

    有时为了网站安全和版权问题,会对自己写的php源码进行加密,在php加密技术上最常用的是zend公司的zend guard 加密软件,现在我们来图文讲解一下。 下面就简单说说如何...2016-11-25
  • 不打开网页直接查看网站的源代码

      有一种方法,可以不打开网站而直接查看到这个网站的源代码..   这样可以有效地防止误入恶意网站...   在浏览器地址栏输入:   view-source:http://...2016-09-20
  • ps怎么使用HSL面板

    ps软件是现在很多人都会使用到的,HSL面板在ps软件中又有着非常独特的作用。这次文章就给大家介绍下ps怎么使用HSL面板,还不知道使用方法的下面一起来看看。 &#8195;...2017-07-06
  • php 调用goolge地图代码

    <?php require('path.inc.php'); header('content-Type: text/html; charset=utf-8'); $borough_id = intval($_GET['id']); if(!$borough_id){ echo ' ...2016-11-25
  • photoshop打开很慢怎么办 ps打开慢的设置技巧

    photoshop软件是一款专业的图像设计软件了,但对电脑的要求也是越高越好的,如果配置一般打开ps会比较慢了,那么photoshop打开很慢怎么办呢,下面来看问题解决办法。 1、...2016-09-14
  • JS+CSS实现分类动态选择及移动功能效果代码

    本文实例讲述了JS+CSS实现分类动态选择及移动功能效果代码。分享给大家供大家参考,具体如下:这是一个类似选项卡功能的选择插件,与普通的TAb区别是加入了动画效果,多用于商品类网站,用作商品分类功能,不过其它网站也可以用,...2015-10-21
  • JS实现自定义简单网页软键盘效果代码

    本文实例讲述了JS实现自定义简单网页软键盘效果。分享给大家供大家参考,具体如下:这是一款自定义的简单点的网页软键盘,没有使用任何控件,仅是为了练习JavaScript编写水平,安全性方面没有过多考虑,有顾虑的可以不用,目的是学...2015-11-08
  • JS基于Mootools实现的个性菜单效果代码

    本文实例讲述了JS基于Mootools实现的个性菜单效果代码。分享给大家供大家参考,具体如下:这里演示基于Mootools做的带动画的垂直型菜单,是一个初学者写的,用来学习Mootools的使用有帮助,下载时请注意要将外部引用的mootools...2015-10-23
  • php 取除连续空格与换行代码

    php 取除连续空格与换行代码,这些我们都用到str_replace与正则函数 第一种: $content=str_replace("n","",$content); echo $content; 第二种: $content=preg_replac...2016-11-25
  • Plesk控制面板新手使用手册总结

    许多的朋友对于Plesk控制面板应用不是非常的了解特别是英文版的Plesk控制面板,在这里小编整理了一些关于Plesk控制面板常用的使用方案整理,具体如下。 本文基于Linu...2016-10-10
  • Jquery Ajax Error 调试错误的技巧

    JQuery使我们在开发Ajax应用程序的时候提高了效率,减少了许多兼容性问题,我们在Ajax项目中,遇到ajax异步获取数据出错怎么办,我们可以通过捕捉error事件来获取出错的信息。在没给大家介绍正文之前先给分享Jquery中AJAX参...2015-11-24
  • 使用insertAfter()方法在现有元素后添加一个新元素

    复制代码 代码如下: //在现有元素后添加一个新元素 function insertAfter(newElement, targetElement){ var parent = targetElement.parentNode; if (parent.lastChild == targetElement){ parent.appendChild(newEl...2014-05-31
  • php简单用户登陆程序代码

    php简单用户登陆程序代码 这些教程很对初学者来讲是很有用的哦,这款就下面这一点点代码了哦。 <center> <p>&nbsp;</p> <p>&nbsp;</p> <form name="form1...2016-11-25
  • PHP实现清除wordpress里恶意代码

    公司一些wordpress网站由于下载的插件存在恶意代码,导致整个服务器所有网站PHP文件都存在恶意代码,就写了个简单的脚本清除。恶意代码示例...2015-10-23
  • 使用GruntJS构建Web程序之构建篇

    大概有如下步骤 新建项目Bejs 新建文件package.json 新建文件Gruntfile.js 命令行执行grunt任务 一、新建项目Bejs源码放在src下,该目录有两个js文件,selector.js和ajax.js。编译后代码放在dest,这个grunt会...2014-06-07
  • 使用percona-toolkit操作MySQL的实用命令小结

    1.pt-archiver 功能介绍: 将mysql数据库中表的记录归档到另外一个表或者文件 用法介绍: pt-archiver [OPTION...] --source DSN --where WHERE 这个工具只是归档旧的数据,不会对线上数据的OLTP查询造成太大影响,你可以将...2015-11-24
  • 如何使用php脚本给html中引用的js和css路径打上版本号

    在搜索引擎中搜索关键字.htaccess 缓存,你可以搜索到很多关于设置网站文件缓存的教程,通过设置可以将css、js等不太经常更新的文件缓存在浏览器端,这样访客每次访问你的网站的时候,浏览器就可以从浏览器的缓存中获取css、...2015-11-24
  • js识别uc浏览器的代码

    其实挺简单的就是if(navigator.userAgent.indexOf('UCBrowser') > -1) {alert("uc浏览器");}else{//不是uc浏览器执行的操作}如果想测试某个浏览器的特征可以通过如下方法获取JS获取浏览器信息 浏览器代码名称:navigator...2015-11-08
  • JS实现双击屏幕滚动效果代码

    本文实例讲述了JS实现双击屏幕滚动效果代码。分享给大家供大家参考,具体如下:这里演示双击滚屏效果代码的实现方法,不知道有觉得有用处的没,现在网上还有很多还在用这个特效的呢,代码分享给大家吧。运行效果截图如下:在线演...2015-10-30
  • jQuery 1.9使用$.support替代$.browser的使用方法

    jQuery 从 1.9 版开始,移除了 $.browser 和 $.browser.version , 取而代之的是 $.support 。 在更新的 2.0 版本中,将不再支持 IE 6/7/8。 以后,如果用户需要支持 IE 6/7/8,只能使用 jQuery 1.9。 如果要全面支持 IE,并混合...2014-05-31