JSON有关问题

WBOY
Release: 2016-06-13 13:33:52
Original
798 people have browsed it

JSON问题
{"id":"0100","regionList":[{JSON数据}],"pinyin":"beijing"}  



怎么能出来0100和beijing呢,谢谢了


------解决方案--------------------

PHP code
<?php $json='{"id":"0100","regionList":[{}],"pinyin":"beijing"}';
print_r(json_decode($json,true));
<br /><font color="#e78608">------解决方案--------------------</font><br>正则法:<br>
Copy after login
PHP code
$s='{"id":"0100","regionList":[{JSON数据}],"pinyin":"beijing"}';
preg_match('/id":"(.*?)".+?pinyin":"(.*?)"/',$s,$m);
echo $m[1];
echo $m[2];
<br><font color="#e78608">------解决方案--------------------</font><br>$json='{"id":"0100","regionList":[{}],"pinyin":"beijing"}';<br>$myArray = json_decode($json,true);<br>echo $myArray['id'];//输出的就是0100<br>echo $myArray['pinyin'];//输出的就是beijing <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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!