我不断收到以下错误:
致命错误:在第 3 行的 /www/zzl.org/t/h/e/theseminary/htdocs/submit.php 中的非对象上调用成员函数 addChild()
我的代码,在它自己的 php 文件中,如下所示:
<?php
$xmlobject = simplexml_load_file('data.xml');
$xmlobject[0]->channel[0]->posts[0]->addChild("item");
$itemcount = $xmlobject->channel->posts->count();
$xmlobject->channel[0]->posts[0]->item[$itemcount]->addChild("title", $title);
$xmlobject->channel->posts->item[$itemcount]->addChild("content", $content);
$xmlobject->asxml("data.xml");
header( "Location: $url" );
?>
我意识到这个问题已被多次问过,但我找不到解决问题的方法。
这是 XML 文件,如果有帮助的话。
<?xml version="1.0"?>
<channel>
<title></title>
<description></description>
<posts>
</posts>
</channel>