您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 汉中分类信息网,免费分类信息发布

使用PHP生成XML文件的四种方法_PHP教程

2024/12/19 16:17:38发布7次查看
使用php生成xml文件的四种方法
title1
content1
2009-10-11
title2
content2
2009-11-11
【直接生成字符串】
方法1:使用纯粹的php代码生成字符串,并把这个字符串写入一个以xml为后缀的文件。这是最原始的生成xml的方法,不过有效!
php代码如下:
'title1',
'content' => 'content1',
'pubdate' => '2009-10-11',
),
array(
'title' => 'title2',
'content' => 'content2',
'pubdate' => '2009-11-11',
)
);
$title_size = 1;
$xml = \n;
$xml .= \n;
foreach ($data_array as $data) {
$xml .= create_item($data['title'], $title_size, $data['content'], $data['pubdate']);
}
$xml .= \n;
echo $xml;
// 创建xml单项
function create_item($title_data, $title_size, $content_data, $pubdate_data)
{
$item = \n;
$item .= . $title_data . \n;
$item .= . $content_data . \n;
$item .= . $pubdate_data . \n;
$item .= \n;
return $item;
}
?>
【domdocument】
方法2:使用domdocument生成xml文件
创建节点使用createelement方法,
创建文本内容使用createtextnode方法,
添加子节点使用appendchild方法,
创建属性使用createattribute方法
php代码如下:
'title1',
'content' => 'content1',
'pubdate' => '2009-10-11',
),
array(
'title' => 'title2',
'content' => 'content2',
'pubdate' => '2009-11-11',
)
);
// 属性数组
$attribute_array = array(
'title' => array(
'size' => 1
)
);
// 创建一个xml文档并设置xml版本和编码。。
$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);
}
} // end if
}
} // end if
} // end function
?>
【xmlwriter】
方法3:使用xmlwriter类创建xml文件
此方法在php 5.1.2后有效
另外,它可以输出多种编码的xml,但是输入只能是utf-8
php代码如下:
'title1',
'content' => 'content1',
'pubdate' => '2009-10-11',
),
array(
'title' => 'title2',
'content' => 'content2',
'pubdate' => '2009-11-11',
)
);
// 属性数组
$attribute_array = array(
'title' => array(
'size' => 1
)
);
$xml = new xmlwriter();
$xml->openuri(php://output);
// 输出方式,也可以设置为某个xml文件地址,直接输出成文件
$xml->setindentstring(' ');
$xml->setindent(true);
$xml->startdocument('1.0', 'utf-8');
// 开始创建文件
// 根结点
$xml->startelement('article');
foreach ($data_array as $data) {
$xml->startelement('item');
if (is_array($data)) {
foreach ($data as $key => $row) {
$xml->startelement($key);
if (isset($attribute_array[$key]) && is_array($attribute_array[$key]))
{
foreach ($attribute_array[$key] as $akey => $aval) {
// 设置属性值
$xml->writeattribute($akey, $aval);
}
}
$xml->text($row); // 设置内容
$xml->endelement(); // $key
}
}
$xml->endelement(); // item
}
$xml->endelement(); // article
$xml->enddocument();
$xml->flush();
?>
【simplexml】
方法4:使用simplexml创建xml文档
'title1',
'content' => 'content1',
'pubdate' => '2009-10-11',
),
array(
'title' => 'title2',
'content' => 'content2',
'pubdate' => '2009-11-11',
)
);
// 属性数组
$attribute_array = array(
'title' => array(
'size' => 1
)
);
$string =
xml;
$xml = simplexml_load_string($string);
foreach ($data_array as $data) {
$item = $xml->addchild('item');
if (is_array($data)) {
foreach ($data as $key => $row) {
$node = $item->addchild($key, $row);
if (isset($attribute_array[$key]) && is_array($attribute_array[$key]))
{
foreach ($attribute_array[$key] as $akey => $aval) {
// 设置属性值
$node->addattribute($akey, $aval);
}
}
}
}
}
echo $xml->asxml();
?>
http://www.bkjia.com/phpjc/363956.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/363956.htmltecharticle使用php生成xml文件的四种方法 ?xml version=1.0 encoding=utf-8? article item title size=1title1/title contentcontent1/content pubdate2009-10-11/pubdate /item item title si...
汉中分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录