简体   繁体   English

如何将JSON字符串转换为数组(PHP)?

[英]How to convert a JSON string into an array (PHP)?

using the below code for decoding json 使用下面的代码解码json

$categories = json_decode($data);
$categories = $categories->data;

where i get this 我得到了这个

{"categories":[{"id":1,"name":"Utilities","apps":897,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/uti.jpg"},{"id":2,"name":"Productivity","apps":477,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/pro.jpg"},{"id":3,"name":"Music","apps":466,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/mus.jpg"},{"id":4,"name":"Travel","apps":289,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/tra.jpg"},{"id":5,"name":"Navigation","apps":297,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/nav.jpg"},{"id":6,"name":"Books","apps":271,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/boo.jpg"},{"id":7,"name":"Healthcare & Fitness","apps":250,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/hea.jpg"},{"id":8,"name":"Games","apps":5116,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/gam.jpg"},{"id":9,"name":"Social Networking","apps":272,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/soc.jpg"},{"id":10,"name":"Lifestyle","apps":434,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/lif.jpg"},{"id":11,"name":"Finance","apps":200,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/fin.jpg"},{"id":12,"name":"News","apps":128,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/new.jpg"},{"id":13,"name":"Photography","apps":481,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/pho.jpg"},{"id":14,"name":"Entertainment","apps":1251,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/ent.jpg"},{"id":15,"name":"Business","apps":221,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/bus.jpg"},{"id":16,"name":"Sports","apps":199,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/spo.jpg"},{"id":17,"name":"Education","apps":433,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/edu.jpg"},{"id":18,"name":"Medical","apps":262,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/med.jpg"},{"id":19,"name":"Weather","apps":64,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/wea.jpg"},{"id":20,"name":"Reference","apps":419,"iconurl":"http:\/\/static.apptrackr.org\/caticons\/ref.jpg"}]} 

and i would like to convert to in an array like this 我想转换成这样的数组

Array[0]
    {
       id => 1
       name => Utilities
       apps => 897
       iconurl => http:\/\/static.apptrackr.org\/caticons\/uti.jpg
    }

and so on 等等

This looks like a JSON string . 这看起来像一个JSON字符串 You can use json_decode() to convert it into a PHP variable, eg 您可以使用json_decode()将其转换为PHP变量,例如

$obj = json_decode($json);
print_r($obj->categories); // array of StdClass objects

You can access and iterate the categories array regularly 您可以定期访问和迭代类别数组

echo $obj->categories[0]->name; // Utilities
echo $obj->categories[1]->name; // Productivity
echo $obj->categories[2]->name; // Music

To convert the StdClass objects to arrays, you could do 要将StdClass对象转换为数组,您可以这样做

$categories = array();
foreach (json_decode($json)->categories as $category) {
    $categories[] = (array) $category;
}
print_r($categories);

You could also do it with a lambda function and array_map : 您也可以使用lambda函数array_map来完成它:

// Before PHP5.3
$categories = array_map(
    create_function('$el', 'return (array) $el;'), 
    json_decode($json)->categories);

// After PHP5.3
$categories = array_map(
    function($el) { return (array) $el; }, 
    json_decode($json)->categories);

嗯,您可以设置第二个参数将JSON转换为数组而不是对象:

$categories = json_decode($data, true);

@Gordon seems correct - that looks like JSON. @Gordon似乎是正确的 - 看起来像JSON。 Assuming, though, that you're dealing with an "actual" PHP Object, then it will be iterable; 但是,假设您正在处理“实际”PHP对象,那么它将是可迭代的; simply run through it with a foreach and push each key/value pair into your destination array. 只需使用foreach运行它,并将每个键/值对推入目标数组。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM