How to convert php array to xml

藏色散人
Release: 2023-03-04 10:30:01
Original
2106 people have browsed it

How to convert php array to xml: first create a PHP sample file; then define an "xml_encode" method; finally use the "data_to_xml" method to convert the php array into xml.

How to convert php array to xml

Recommended: "PHP Video Tutorial"

php converts the array to xml format

php converts the array to xml format, excerpted from thinkphp, record it

/**
 * XML编码
 * @param mixed $data 数据
 * @param string $encoding 数据编码
 * @param string $root 根节点名
 * @return string
 */
function xml_encode($data, $encoding='utf-8', $root='think') {
    $xml    = &#39;<?xml version="1.0" encoding="&#39; . $encoding . &#39;"?>&#39;;
    $xml   .= &#39;<&#39; . $root . &#39;>&#39;;
    $xml   .= data_to_xml($data);
    $xml   .= &#39;</&#39; . $root . &#39;>&#39;;
    return $xml;
}
/**
 * 数据XML编码
 * @param mixed $data 数据
 * @return string
 */
function data_to_xml($data) {
    $xml = &#39;&#39;;
    foreach ($data as $key => $val) {
        is_numeric($key) && $key = "item id=\"$key\"";
        $xml    .=  "<$key>";
        $xml    .=  ( is_array($val) || is_object($val)) ? data_to_xml($val) : $val;
        list($key, ) = explode(&#39; &#39;, $key);
        $xml    .=  "</$key>";
    }
    return $xml;
}
Copy after login

The above is the detailed content of How to convert php array to xml. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!