Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use PHP JSON extension correctly

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the knowledge of "how to use PHP JSON extension correctly". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

JSON is a protocol designed to allow middleware to create objects that use the inherent format of JavaScript. The big attribute of it is that it is a lightweight protocol. When simply dealing with RSS aggregations or recipe lists, you don't need to use all the features of XML in JavaScript. There is no need to validate the format or ensure strict data typing.

PHP JSON extended encoding and decoding

There are two functions for PHP JSON extensions: encode and decode. * functions will convert any type of data object into a set of serialized data for JavaScript to process. The second function will decode the serialized data and convert it to a basic PHP object or associative array. Let's look at json_decode ().

Example of 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)

? >

As above, we have a PHP script that takes $jsonObject and decodes it back to the PHP native object. We decoded it twice. * times, using unmodified usage, this will get the object of stdClass; the second time, use Boolean parameters to create associative arrays.

The following is the output of 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] = >))

Let's take a look at 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;? >

No recursion is used. No tags have been added. Just pass it into the json_encode () function, and it will pass out as a JSON serialized object from the other end.

That's all for "how to use PHP JSON extensions correctly". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report