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.
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 = '<?xml version="1.0" encoding="' . $encoding . '"?>'; $xml .= '<' . $root . '>'; $xml .= data_to_xml($data); $xml .= '</' . $root . '>'; return $xml; } /** * 数据XML编码 * @param mixed $data 数据 * @return string */ function data_to_xml($data) { $xml = ''; 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(' ', $key); $xml .= "</$key>"; } return $xml; }
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!