Convert json string to object in php?

青灯夜游
Release: 2023-03-02 18:44:01
Original
6754 people have browsed it

In PHP, you can use the json_decode() function to convert a json string into a PHP object. The json_decode() function is used to decode a JSON string and convert the json string into an object or array. By default, it is converted into an object. If the second parameter of the function is set to true, it can be converted into an associative array.

Convert json string to object in php?

json_decode() function is a built-in function in PHP, used to decode JSON format strings and convert JSON format strings into PHP Variable (object or array). [Related tutorial recommendations: "PHP Tutorial"]

The syntax is:

json_decode( $json, $assoc = FALSE, $depth = 512, $options = 0 )
Copy after login

Parameters: The The function accepts four parameters:

  • #json: It contains the JSON string that needs to be decoded. It only works with UTF-8 encoded strings.

  • assoc: This is a Boolean variable. If true, the returned object will be converted to an associative array.

  • depth: Specifies the user-specified recursion depth.

  • options: Bitmask containing JSON_OBJECT_AS_ARRAY, JSON_BIGINT_AS_STRING, JSON_THROW_ON_ERROR.

Return value: This function returns the encoded JSON value in the appropriate PHP type. Returns NULL if the json cannot be decoded or the depth of the encoded data is greater than the recursion limit.

Example:

Convert json string to object in php?

When the second parameter is TRUE, an array will be returned, and when FALSE, an object will be returned.

The following are the execution results:

Convert json string to object in php?

The above is the detailed content of Convert json string to object in php?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!