Home > Backend Development > PHP Problem > How to convert json to array in php

How to convert json to array in php

王林
Release: 2023-03-04 14:24:02
Original
2542 people have browsed it

php method to convert json into an array: You can use the json_decode() function to achieve this. This function is used to receive a json format string and convert it into a php variable. If the parameter $assoc is true, the function returns an array.

How to convert json to array in php

json_decode accepts a JSON format string and converts it into a PHP variable. When the parameter $assoc is TRUE, array will be returned, otherwise object will be returned. .

(Recommended tutorial: php graphic tutorial)

Grammar:

json_decode(string $json[,bool $assoc = false[,int $depth = 512[,int $options = 0]]])
Copy after login

(Recommended video tutorial: php video tutorial )

Code implementation:

<?php

// 在PHP变量中存储JSON数据

$json = &#39;{"Peter":65,"Harry":80,"John":78,"Clark":90}&#39;;

var_dump(json_decode($json, true));

?>
Copy after login

Output result:

How to convert json to array in php

The above is the detailed content of How to convert json to array 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