]* >([\x00-\xFF]*)<\/\1>/"; if(preg_match_all($reg, $xml, $matches)) { $count = count($matches[0]); for("/> ]* >([\x00-\xFF]*)<\/\1>/"; if(preg_match_all($reg, $xml, $matches)) { $count = count($matches[0]); for(">

首頁 >後端開發 >php教程 >xtreme toolkit pro php下將XML轉換為陣列

xtreme toolkit pro php下將XML轉換為陣列

WBOY
WBOY原創
2016-07-29 08:41:341025瀏覽

複製程式碼 程式碼如下:


// Xml 轉數組, 包含根鍵
function xml_to_array( $xml )
{
$reg = "/]*>([\x00-\xFF]*)/";
if(preg_match_all($reg, $xml , $matches))
{
$count = count($matches[0]);
for($i = 0; $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]];
}

以上就介紹了xtreme toolkit pro php下將XML轉換為數組,包括了xtreme toolkit pro方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn