技巧总结 正确使用PHP JSON扩展
PHP JSON扩展的应用方法对于刚刚接触PHP语言不久的小菜鸟们肯定是非常陌生的。我们在接下来的内容中将会针对这一应用方法做一个详细的介绍。
JSON 是一项旨在允许中间件创建使用 JavaScript 固有格式的对象的协议。它最强大的属性是它是一种轻量级协议。简单处理 RSS 聚合或 recipe 列表时,您不需要在 JavaScript 中使用 XML 的全部功能。不需要验证格式或确保严格的数据键入。
PHP JSON扩展编码和解码
有两个函数用于PHP JSON扩展:encode 和 decode。第一个函数将把任意类型的数据对象转换为一组序列化数据,以供 JavaScript 处理。第二个函数将把序列化数据解码,并将其转换为基本 PHP 对象或联合数组。我们来看一看 json_decode()。
json_decode() 的示例
< ?php $jsonObject = '{"21":{"url":"www.blah.com \/story1.html","title":"JSON is sweeping AJAX world","viewed":false},"22":{"url": "www.blah.com\/story2.html","title":"JSON is great","viewed":false}}'; $decodedObject = json_decode($jsonObject); $decodedArray = json_decode($jsonObject, true); print_r($decodedObject); echo "< br>< br>"; print_r($decodedArray); ?>
如上,我们有一个 PHP 脚本,该脚本将获取 $jsonObject 并将其解码回 PHP 固有对象。我们进行了两次解码。第一次,使用未经修改的用法,这将得到 stdClass 的对象;第二次,使用布尔型参数来创建联合数组。
以下是decode的输出:
stdClass Object ( [21] => stdClass Object ( [url] => www.blah.com/story1.html [title] => JSON is sweeping AJAX world [viewed] => ) [22] => stdClass Object ( [url] => www.blah.com/story2.html [title] => JSON is great [viewed] => ) ) Array ( [21] => Array ( [url] => www.blah.com/story1.html [title] => JSON is sweeping AJAX world [viewed] => ) [22] => Array ( [url] => www.blah.com/story2.html [title] => JSON is great [viewed] => ) )
我们再来看看encode:
< ?php $results = array("21" => array("url" => "www.blah.com/story1.html", "title" => "JSON is sweeping AJAX world", "viewed" => FALSE), "22" => array("url"=> "www.blah.com/story2.html", "title" => "JSON is great", "viewed" => FALSE)); $jsonObject = json_encode($results); echo $jsonObject; ?>
没有使用递归。没有添加标记。只需将其传入 json_encode() 函数,然后它将从另一端作为 JSON 序列化对象传出。
结束语
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23