Home  >  Article  >  Backend Development  >  PHP将XML数据转成数组 例子详细介绍

PHP将XML数据转成数组 例子详细介绍

WBOY
WBOYOriginal
2016-06-23 13:50:54744browse

//首先在开发中,肯定会遇到调用别人的接口对方给你返回的数据是xml格式的//能后你拿到xml数据后要转成数组来进行数据处理!$xmlstring = <note><name>乐杨俊</name><from>江西抚州市</from><working>BJ</working><desc>乐杨俊php相关浅谈!</desc></note>XML;$xml = simplexml_load_string($xmlstring);$data['tk'] = json_decode(json_encode($xml),TRUE);echo "<pre class="brush:php;toolbar:false">";print_r($data);foreach($data as $values){	foreach($values as $dv){		echo $dv."\n";	}}


Statement:
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