我如何使用 php dom 检查是否存在 xml 文件,如果不存在则创建它。
<?php
header("Location: index.php");
$xmldoc = new DOMDocument();
$xmldoc->load('sample.xml');
$newAct = $_POST['activity'];
$root = $xmldoc->firstChild;
$newElement = $xmldoc->createElement('activity');
$root->appendChild($newElement);
$newText = $xmldoc->createTextNode($newAct);
$newElement->appendChild($newText);
$xmldoc->save('sample.xml');
?>
现在,因为它不存在,它给了我这个错误:
DOMDocument::load(): I/O warning : failed to load external entity