首頁 >後端開發 >php教程 >PHP實作陣列array轉換成xml的方法

PHP實作陣列array轉換成xml的方法

高洛峰
高洛峰原創
2016-12-22 14:37:221388瀏覽

本文實例講述了PHP實作數組array轉換成xml的方法。分享給大家供大家參考,具體如下:

<?php
$elementLevel = 0 ;
function array_Xml($array, $keys = &#39;&#39;)
{
global $elementLevel;
if(!is_array($array))
{
  if($keys == &#39;&#39;){
  return $array;
  }else{
  return "\n<$keys>" . $array . "</$keys>\n";
  }
}else{
  foreach ($array as $key => $value)
  {
  $haveTag = true;
  if (is_numeric($key))
  {
   $key = $keys;
   $haveTag = false;
  }
  if($elementLevel == 0 )
  {
   $startElement = "<$key>";
   $endElement = "</$key>";
  }
  $text .= $startElement;
  if(!$haveTag)
  {
   $elementLevel++;
   $text .= "<$key>" . array_Xml($value, $key). "</$key>\n";
  }else{
   $elementLevel++;
   $text .= array_Xml($value, $key);
  }
  $text .= $endElement;
  }
}
return $text;
}
$array = array(
"employees" => array(
"employee" => array(
array(
"name" => "name one",
"position" => "position one"
),
array(
"name" => "name two",
"position" => "position two"
),
array(
"name" => "name three",
"position" => "position three"
)
)
)
);
echo array_Xml($array);
?>

希望本文所述對大家PHP程式設計有所幫助。


更多PHP實作數組array轉換成xml的方法相關文章請關注PHP中文網!


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