《PHP实战:PHP如何将XML转成数组》要点:
本文介绍了PHP实战:PHP如何将XML转成数组,希望对您有用。如果有疑问,可以联系我们。
PHP实战如果你使用 curl 获取的 xml data
xml=simplexmlloadstring(data);
data[′tk′]=jsondecode(jsonencode(xml),TRUE);
如果是直接获取 URL 数据的话
xml=simplexmlloadfile(data);
data[′tk′]=jsondecode(jsonencode(xml),TRUE);
先把 simplexml 对象转换成 json,再将 json 转换成数组.
PHP实战代码:
PHP实战
<?php
$string = <<<XML
<?xml version='1.0'?>
<document>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body>
I know that's the answer -- but what's the question?
</body>
</document>
XML;
$xml=simplexml_load_string($string);
$data = json_decode(json_encode($xml),TRUE);
var_dump( $xml );
var_dump( $data );
PHP实战
object(SimpleXMLElement)[1]
public 'title' => string 'Forty What?' (length=11)
public 'from' => string 'Joe' (length=3)
public 'to' => string 'Jane' (length=4)
public 'body' => string '
I know that's the answer -- but what's the question?
' (length=57)
array
'title' => string 'Forty What?' (length=11)
'from' => string 'Joe' (length=3)
'to' => string 'Jane' (length=4)
'body' => string '
I know that's the answer -- but what's the question?
' (length=57)
PHP实战以上就是本文的全部内容,希望对大家的学习有所赞助.
《PHP实战:PHP如何将XML转成数组》是否对您有启发,欢迎查看更多与《PHP实战:PHP如何将XML转成数组》相关教程,学精学透。维易PHP学院为您提供精彩教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/6974.html