Home  >  Article  >  php教程  >  两句话将xml字符串转换成数组.

两句话将xml字符串转换成数组.

PHP中文网
PHP中文网Original
2016-05-25 17:11:121158browse

php代码:

<?php
$xml=new SimpleXMLElement($string);
$array = json_decode(json_encode($xml),true);
?>
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