php將陣列轉xml字串的方法:先建立一個PHP範例檔案;然後透過「public function array2xml($arr, $level = 1) {...}」方法將一個陣列轉換為XML結構的字串即可。
推薦:《PHP影片教學》
PHP將一個陣列轉換為XML 結構的字串
程式碼如下:
/** * 将一个数组转换为 XML 结构的字符串 * @param array $arr 要转换的数组 * @param int $level 节点层级, 1 为 Root. * @return string XML 结构的字符串 */ public function array2xml($arr, $level = 1) { $s = $level == 1 ? "<xml>" : ''; foreach($arr as $tagname => $value) { if (is_numeric($tagname)) { $tagname = $value['TagName']; unset($value['TagName']); } if(!is_array($value)) { $s .= "<{$tagname}>".(!is_numeric($value) ? '<![CDATA[' : '').$value.(!is_numeric($value) ? ']]>' : '')."</{$tagname}>"; } else { $s .= "<{$tagname}>" . $this->array2xml($value, $level + 1)."</{$tagname}>"; } } $s = preg_replace("/([\x01-\x08\x0b-\x0c\x0e-\x1f])+/", ' ', $s); return $level == 1 ? $s."</xml>" : $s; }
以上是php如何將陣列轉xml字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!