]* >([\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(">
코드 복사 코드는 다음과 같습니다.
// 루트 키를 포함하여 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]]
위 내용은 xtreme toolkit pro의 내용을 포함하여 xtreme toolkit pro php에서 XML을 배열로 변환하는 방법을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.