php下将XML转换为数组

前端之家收集整理的这篇文章主要介绍了php下将XML转换为数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="6707" class="copybut" id="copybut6707" onclick="doCopy('code6707')"> 代码如下:

<div class="codebody" id="code6707">
// Xml 转 数组,包括根键
function xml_to_array( $xml )
{
$reg = "/<(\w+)[^>]>([\x00-\xFF])<\/\1>/";
if(preg_match_all($reg,$xml,$matches))
{
$count = count($matches[0]);
for($i = 0; $i < $count; $i++)
{
$subxml= $matches[2][$i];
$key = $matches[1][$i];
if(preg_match( $reg,$subxml ))
{
$arr[$key] = xml_to_array( $subxml );
}else{
$arr[$key] = $subxml;
}
}
}
return $arr;
}
// Xml 转 数组,不包括根键
function xmltoarray( $xml )
{
$arr = xml_to_array($xml);
$key = array_keys($arr);
return $arr[$key[0]];
}

原文链接:https://www.f2er.com/php/28852.html

猜你在找的PHP相关文章