在php中输出生成xml文件的方法有很多,有直接用header输入,也有使用DomDocument与SimpleXML实现创建xml文档的.
方法一,代码如下:
- function xml_out($content, $charset = 'utf-8') {
- @header("Expires: -1");
- @header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE);
- @header("Pragma: no-cache");
- @header("Content-type: application/xml; charset=$charset");
- echo '<' . "?xml version="1.0" encoding="$charset"?>n";
- echo "<root><![CDATA[" . trim($content) . "]]></root>";
- exit();
- }
方法二,代码如下:
- <?php
- header("Content-type: text/xml");
- echo "<?xml version="1.0" encoding="UTF-8"?>";
- echo "<users><user><name>小小菜鸟</name><age>24</age><sex>男</sex></user><user><name>艳艳</name><age>23</age><sex>女</sex></user></users>";
- ?>
方法三:使用DomDocument生成XML文件
创建节点使用createElement方法,创建文本内容使用createTextNode方法,添加子节点使用appendChild方法,创建属性使用createAttribute方法,代码如下:
- <?PHP
- $data_array = array(
- array(
- 'title' => 'title1',
- 'content' => 'content1',
- 'pubdate' => '2009-10-11',
- ),
- array(
- 'title' => 'title2',
- 'content' => 'content2',
- 'pubdate' => '2009-11-11',
- )
- );
-
-
- $attribute_array = array(
- 'title' => array(
- 'size' => 1
- )
- );
-
-
- $dom=new DomDocument('1.0', 'utf-8');
-
-
- $article = $dom->createElement('article');
- $dom->appendchild($article);
-
- foreach ($data_array as $data) {
- $item = $dom->createElement('item');
- $article->appendchild($item);
-
- create_item($dom, $item, $data, $attribute_array);
- }
-
- echo $dom->saveXML();
-
- function create_item($dom, $item, $data, $attribute) {
- if (is_array($data)) {
- foreach ($data as $key => $val) {
-
- $$key = $dom->createElement($key);
- $item->appendchild($$key);
-
-
- $text = $dom->createTextNode($val);
- $$key->appendchild($text);
-
- if (isset($attribute[$key])) {
- foreach ($attribute[$key] as $akey => $row) {
-
- $$akey = $dom->createAttribute($akey);
- $$key->appendchild($$akey);
-
-
- $aval = $dom->createTextNode($row);
- $$akey->appendChild($aval);
- }
- }
- }
- }
- }
- ?>
方法四:SimpleXML输入xml格式编码
SimpleXML作为PHP核心的组成部分,可以把XML转换为对象,但是有时候,我需要对输出的xml格式设置编码,代码如下:
$XML = new SimpleXMLElement("<foo />"); echo($XML->asXML());
//输出结果:<?xml version="1.0"?> <foo/>
//如果想输出,代码如下:<?xml version="1.0" encoding="UTF-8"?> <foo/> |