Home > Backend Development > PHP Tutorial > 怎么从Json中取出数据放到一个新组中

怎么从Json中取出数据放到一个新组中

WBOY
Release: 2016-06-13 11:59:37
Original
1142 people have browsed it

如何从Json中取出数据放到一个新组中
JSON数据如下:

{<br />    "CommunityModel": [<br />        {<br />            " UUID ": "xxxxxx-xxxxxx-xxxxxxx-xxxxxx1",<br />            " CommunityName ": "格林花园",<br />            " CommunityAddress ": "XXXX203号",<br />            " Longitude ": "12.33333333",<br />            " Latitude ": "143.1121222",<br />            " Form ": "商品房",<br />            " BuildingNum ": "100",<br />            " OwnerNum ": "1800",<br />            " CarportNum ": "1800"<br />        },<br />{<br />            " UUID ": "xxxxxx-xxxxxx-xxxxxxx-xxxxxx2",<br />            " CommunityName ": "格林花园2",<br />            " CommunityAddress ": "XX路203号",<br />            " Longitude ": "12.33333333",<br />            " Latitude ": "143.1121222",<br />            " Form ": "商品房",<br />            " BuildingNum ": "100",<br />            " OwnerNum ": "1800",<br />            " CarportNum ": "1800"<br />        }<br />    ]<br />}
Copy after login

通过PHP获取,要求获取JSON中UUID和CommunityName放到一个新数组$arr中返回。

我的代码如下:
		<br />                $url_get ='http://api.com:90/1.php';<br />		$json=json_decode($this->curlGet($url_get));<br />		foreach($json as $jsonvalue)<br />		{<br />                      。。。。这里该如何写<br />	//		dump($jsonvalue);<br />		}
Copy after login

------解决方案--------------------
好奇怪,居然键名两端是空格
$s =<<< JSON
{<br /> "CommunityModel": [<br /> {<br /> " UUID ": "xxxxxx-xxxxxx-xxxxxxx-xxxxxx1",<br /> " CommunityName ": "格林花园",<br /> " CommunityAddress ": "XXXX203号",<br /> " Longitude ": "12.33333333",<br /> " Latitude ": "143.1121222",<br /> " Form ": "商品房",<br /> " BuildingNum ": "100",<br /> " OwnerNum ": "1800",<br /> " CarportNum ": "1800"<br /> },<br />{<br /> " UUID ": "xxxxxx-xxxxxx-xxxxxxx-xxxxxx2",<br /> " CommunityName ": "格林花园2",<br /> " CommunityAddress ": "XX路203号",<br /> " Longitude ": "12.33333333",<br /> " Latitude ": "143.1121222",<br /> " Form ": "商品房",<br /> " BuildingNum ": "100",<br /> " OwnerNum ": "1800",<br /> " CarportNum ": "1800"<br /> }<br /> ]<br />}
JSON;
$a = json_decode($s, 1);
foreach($a['CommunityModel'] as $v) {
$arr[] = array('UUID' => $v[' UUID '], 'CommunityName' => $v[' CommunityName ']);
}
print_r($arr);
Copy after login

Array<br>(<br>    [0] => Array<br>        (<br>            [UUID] => xxxxxx-xxxxxx-xxxxxxx-xxxxxx1<div class="clear">
                 
              
              
        
            </div>
Copy after login
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