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

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

高洛峰
發布: 2023-03-03 22:50:02
原創
1422 人瀏覽過

本文實例講述了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中文網!


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板