一、原理
转载自:http://www.yoewan.com/php-export-xml-
files.html
更多内容:yoewan分享,
Flash教程,
JSLF教程
通过php写文件的功能,将xml数据写入其中,然后将文本的格式定义为xml
二、代码
//这个获取你传过来的xml文件数据,是一个字符串
$str=$_REQUEST['data'];
//去除文件中的
转义字符
$str=stripslashes($str);
//
获取文件的名称,这个是你传过来名称
$filename=$_REQUEST['name'].'.xml';
//将文件格式转换为utf-8,这里要根据你自己的网页
编码来转码
$str=
iconv('','utf-8',$str);
$fp=fopen("$filename","w");//打开文件
fwrite($fp,$str);//写入文件
fclose($fp);//关闭
测试用xml数据
<?xml version="1.0" encoding="utf-8"?>
<data>
<sound id="123" x="574" y="425" space="100"/>
<move x="0" y="300" w="1480.4" h="303.5" len="148,30" space="10" />
<barriers id="1" x="301" y="436"/>
<effect id="14" x="-404" y="164"/>
</data>