([\x00-\xFF]*)/"; if(preg_match_all($reg, $xml, $matc"/> ([\x00-\xFF]*)/"; if(preg_match_all($reg, $xml, $matc">

Maison  >  Article  >  développement back-end  >  php下将XML转换为数组的方法

php下将XML转换为数组的方法

WBOY
WBOYoriginal
2016-06-20 13:03:11971parcourir

PHP XML To Array,将XML转换为数组,需要的朋友可以参考下。

// 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]];
}

 


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn