【发布时间】:2011-03-07 15:53:39
【问题描述】:
我的 xml 文件:
<temporary>
<users>
<temp>
<id>1</id>
<title> Undercover</title>
<author>Wiwit</author>
</temp>
<nissi>
<confirm>3977678bce8515e8cdbfa64850904ad1</confirm>
<firstname>hi</firstname>
<lastname>hhey</lastname>
<day>1</day>
</nissi>
</users>
</temporary>
我的 php:
<?php
$user="nissi";
$xml = simplexml_load_file("temporary.xml")
or die("Error: Cannot create object");
unset($xml->temporary->users->$user);
?>
为什么这不起作用。 取消设置不起作用。节点不会被删除。
【问题讨论】:
-
什么失败了?文件加载还是
unset()调用?