Heim  >  Artikel  >  Backend-Entwicklung  >  将数组或对象转换为XML文档

将数组或对象转换为XML文档

WBOY
WBOYOriginal
2016-07-25 09:08:57902Durchsuche
使用方法: return xml_encode($result);
  1. // xml编码
  2. function xml_encode($data, $encoding='utf-8', $root="root") {
  3. $xml = '';
  4. $xml.= '';
  5. $xml.= data_to_xml($data);
  6. $xml.= '' . $root . '>';
  7. return $xml;
  8. }
  9. function data_to_xml($data) {
  10. if (is_object($data)) {
  11. $data = get_object_vars($data);
  12. }
  13. $xml = '';
  14. foreach ($data as $key => $val) {
  15. is_numeric($key) && $key = "item id=\"$key\"";
  16. $xml.="";
  17. $xml.= ( is_array($val) || is_object($val)) ? data_to_xml($val) : $val;
  18. list($key, ) = explode(' ', $key);
  19. $xml.="$key>";
  20. }
  21. return $xml;
  22. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:jpge 与png图片的融合 Nächster Artikel:原创的超级简单的php框架