This article mainly introduces the Zend Framework's method of processing Json data, and analyzes the use of zend framework for json-related operation classes in the form of examples. Friends in need can refer to the following
The examples of this article describe Zend Framework Methods for processing Json data. Share it with everyone for your reference, the details are as follows:
JSON delimiters and meaning
##{} is used to implement the inclusion of objects, and the objects are included in the large in brackets, commas are used to separate different attributes of an object, or elements of an array
[] are used to store arrays, and arrays will be stored in square brackets
: Used to represent the value of a key/value pair, The key is before the colon and the value after the colon
{ "addressbook":{ "name":"Mary Lebow", "address":{ "street":"5 Main Street", "city":"San Diego,CA", "zip":91912 }, "phoneNumbers":[ "619 332-3452", "664 223-4667" ] } }
Use JSON
Syntax: $json = Zend_Json::encode($phpNative);Description: Among them, the parameter $phpNative is a common data type in PHP, which can be an array, object or other types of data.
The function return value $json is a string that conforms to JSON format.
Example:
<?php require_once("Zend/Json.php"); $temp = array( "a"=>0, "b"=>1, "c"=>array( "c-1"=>21, "c-2"=>22, "c-3"=>23, ), "d"=>3 ); $json = Zend_Json::encode($temp); echo "临时数组内容为:"; echo "<pre class="brush:php;toolbar:false">"; print_r($temp); echo ""; echo "转换为JSON格式内容为:"; echo "
"; print_r($json); echo "";
临时数组内容为: Array ( [a] => 0 [b] => 1 [c] => Array ( [c-1] => 21 [c-2] => 22 [c-3] => 23 ) [d] => 3 ) 转换为JSON格式内容为: {"a":0,"b":1,"c":{"c-1":21,"c-2":22,"c-3":23},"d":3}
Decode JSON into normal data
Syntax:$phpNative = Zend_Json::decode($json);
Example:"; print_r($json); echo ""; $native = Zend_Json::decode($json); echo "解码后为:"; echo "
"; print_r($native); echo "";
解码前为: { "addressbook":{ "name":"zhangsan", "address":{ "street":"Chang an jie", "city":"BeiJing", "zip":100001 }, "phoneNumbers":[ "010-12345678", "010-11111111" ] } } 解码后为: Array ( [addressbook] => Array ( [name] => zhangsan [address] => Array ( [street] => Chang an jie [city] => BeiJing [zip] => 100001 ) [phoneNumbers] => Array ( [0] => 010-12345678 [1] => 010-11111111 ) ) )
phpNative=ZendJson::decode(phpNative=ZendJson::decode(json,Zend_Json::TYPE_OBJECT);
Up The result after decoding an example into an object is解码后为: stdClass Object ( [addressbook] => stdClass Object ( [name] => zhangsan [address] => stdClass Object ( [street] => Chang an jie [city] => BeiJing [zip] => 100001 ) [phoneNumbers] => Array ( [0] => 010-12345678 [1] => 010-11111111 ) ) )
Summary:
The use of Json is relatively simple. Json is required for interface applications. It can be shared in different languages. It can transfer data flexibly. It has a similar function to XML, but it saves bandwidth than XML. The above is the entire content of this article, I hope it will be helpful to everyone Learning will be helpful. For more related content, please pay attention to the PHP Chinese website!Related recommendations:About the usage analysis of Loader and PluginLoader in Zend Framework
About the implementation method of renaming uploaded files in Zend Framework
The above is the detailed content of About Zend Framework's method of processing Json data. For more information, please follow other related articles on the PHP Chinese website!