当前位置:Gxlcms > PHP教程 > 将数组或对象转换为XML文档

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

时间:2021-07-01 10:21:17 帮助过:20人阅读

使用方法: return xml_encode($result);
  1. // xml编码
  2. function xml_encode($data, $encoding='utf-8', $root="root") {
  3. $xml = '';
  4. $xml.= '<' . $root . '>';
  5. $xml.= data_to_xml($data);
  6. $xml.= '';
  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.="<$key>";
  17. $xml.= ( is_array($val) || is_object($val)) ? data_to_xml($val) : $val;
  18. list($key, ) = explode(' ', $key);
  19. $xml.="";
  20. }
  21. return $xml;
  22. }

人气教程排行