这是一个创建注释元素的函数(在处理注释的类中)
function add($id,$message){
$newcomment = $this->source->addChild('comment');
$newcomment->addAttribute('user',$id);
$newcomment->addAttribute('timestamp',time());
$newcomment = $message; // <--------- fail
$this->source->asXML($this->save);
return(true);
}
所有这些都有效,但我显然不知道我在用我指向的线做什么。但我基本上想将消息放在评论元素中,如下所示:
<comments>
<comment id="12345678" timestamp="1355812061">
Hey friend, what's up?
</comment>
<comment id="87654321" timestamp="1355813155">
Nothing much, just have this problem with simpleXML
</comment>
</comments>
但是我所拥有的只是没有设置消息。
所以我的问题是,这可能吗?如果可以,我该怎么办?