输出或写入 xml 文件?
$fp = fopen('data.txt', 'r');
$xml = new SimpleXMLElement('<allproperty></allproperty>');
while ($line = fgetcsv($fp)) {
if (count($line) < 4) continue; // skip lines that aren't full
$node = $xml->addChild('aproperty');
$node->addChild('postcode', $line[0]);
$node->addChild('price', $line[1]);
$node->addChild('imagefilename', $line[2]);
$node->addChild('visits', $line[3]);
}
echo $xml->saveXML();
我使用这个脚本将文本文件转换为 xml 文件,但我想将其输出到文件中,我该如何做这个 simpleXML,干杯
$fp = fopen('data.txt', 'r');
$xml = new SimpleXMLElement('<allproperty></allproperty>');
while ($line = fgetcsv($fp)) {
if (count($line) < 4) continue; // skip lines that aren't full
$node = $xml->addChild('aproperty');
$node->addChild('postcode', $line[0]);
$node->addChild('price', $line[1]);
$node->addChild('imagefilename', $line[2]);
$node->addChild('visits', $line[3]);
}
echo $xml->saveXML();
im using this script to convert text file into a xml file, but i want to output it to a file, how can i do this simpleXML, cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
file_put_contents
函数可以做到这一点。该函数获取文件名和一些内容并将其保存到文件中。因此,重新考虑您的示例,您只需将 echo 语句替换为 file_put_contents 即可。
file_put_contents
function would do it. The function take a filename and some content and save it to the file.So retaking your example you would just to replace the echo statement by
file_put_contents
.作为记录,您可以使用 asXML() 来实现这一点。我的意思是,它就在手册中,只需阅读它即可生活会变得更轻松。 (我认为,对于某些人来说,向 StackOverflow 询问基本内容可能更容易)
另外,这一个更具体,您不一定需要使用
addChild()
每个孩子。如果没有该名称的子代,则可以使用对象属性表示法直接分配它:For the record, you can use asXML() for that. I mean, it's right there in the manual, just read it and your life will get easier. (I assume, perhaps asking StackOverflow for basic stuff is easier for some)
Also, and this one is more circumstantial, you don't necessarily need to use
addChild()
for every child. If there is no child of that name, it can be assigned directly using the object property notation: