通过文件系统生成XML文件

前端之家收集整理的这篇文章主要介绍了通过文件系统生成XML文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码

<a href="index.xml">输出创建的xml的文档</a>
<?PHP 
$fopen = fopen ("index.xml","w");  			//使用添加模式打开文件,文件指针指在表尾
$title='<?xml version="1.0" encoding="gb2312"?>
<RSS xmlns:rdf="http://www.w3.org/1999/02/22-rdf-Syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/RSS/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>科技学院</title>
    <link>http://www.kejixueyuan.com</link>
    <description>科技学院</description>
    <dc:creator>http://www.kejixueyuan.com</dc:creator>';
fwrite($fopen,$title);							//写入头文件
$item="<item>
		<title>编程</title>
		<link>http://www.kejixueyuan.com</link>
 		<description>编程大全系统</description>
 		<pubDate>2017-03-08</pubDate>
		</item>";
if (!fwrite($fopen,$item)){               		//将数据写入到文件中
	echo "写入内容失败!" ;
    exit ; 
}
fwrite($fopen,"</channel></RSS>");             //将xml文件的结束符写入到文件中
fclose($fopen);		//关闭文件
?>

二 运行结果
原文链接:https://www.f2er.com/xml/294141.html

猜你在找的XML相关文章