在之前我写过php返回json数据简单实例,刚刚上网,突然发现一篇文章,也是介绍json的,还挺详细,值得参考。内容如下
从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。
一、json_encode()
| 1234 | <?php$arr=array('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);echojson_encode($arr);?> |
输出
| 1 | {"a":1,"b":2,"c":3,"d":4,"e":5} |
再看一个对象转换的例子:
| 123456 | $obj->body ='another post';$obj->id = 21;$obj->apPRoved = true;$obj->favorite_count = 1;$obj->status = NULL;echojson_encode($obj); |
输出
| 1234567891011 | { "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)转为对象格式。
比如,现在有一个索引数组
| 123 | $arr= Array('one','two','three');echojson_encode($arr); |
输出
| 1 | ["one","two","three"] |
如果将它改为关联数组:
| 123 | $arr= Array('1'=>'one','2'=>'two','3'=>'three'); echojson_encode($arr); |
输出变为
| 1 | {"1":"one","2":"two","3":"three"} |
注意,数据格式从"[]"(数组)变成了"{}"(对象)。
如果你需要将"索引数组"强制转化成"对象",可以这样写
| 1 | json_encode( (object)$arr); |
或者
| 1 | json_encode ($arr, JSON_FORCE_OBJECT ); |
三、类(class)的转换
下面是一个PHP的类:
| 1234567891011121314151617 | classFoo { constERROR_CODE ='404'; public$public_ex='this is public'; private$private_ex='this is private!'; protected$protected_ex='this should be protected'; publicfunctiongetErrorCode() { returnself::ERROR_CODE; }
|