Home > Backend Development > PHP Tutorial > 怎么解析这个格式的数据

怎么解析这个格式的数据

WBOY
Release: 2016-06-13 11:58:01
Original
907 people have browsed it

如何解析这个格式的数据
我有一串这样的数据,如何解析到数组中?
张三姓名>19年龄>北京地址>100010邮编>

这个数据的长度是不固定的,该如何解析后存放在数组中呢?
------解决方案--------------------

<br /><br />$str = '<姓名>张三</姓名><年龄>19</年龄><地址>北京</地址><邮编>100010</邮编>';<br />preg_match_all('<br><font color='#FF8000'>------解决方案--------------------</font><br><.*>(.*)</.*><br><font color='#FF8000'>------解决方案--------------------</font><br>U',$str,$match);<br />//不知道正则写对没有<br /><br />
Copy after login

------解决方案--------------------
$s = '<姓名>张三</姓名><年龄>19</年龄><地址>北京</地址><邮编>100010</邮编>';<br />preg_match_all('/<(.*)>(.*)</U', $s, $m);<br />$a = array_combine($m[1], $m[2]);<br />print_r($a);
Copy after login
Array<br />(<br />    [姓名] => 张三<br />    [年龄] => 19<br />    [地址] => 北京<br />    [邮编] => 100010<br />)<br /><br />
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