我不明白为什么会失败。 DOMElement是否需要成为Document的一部分?

$domEl = new DOMElement("Item");
$domEl->setAttribute('Something','bla');

引发异常
> Uncaught exception 'DOMException' with message 'No Modification Allowed Error';

我以为我可以创建一个DOMElement,而这将是可变的。

最佳答案

http://php.net/manual/en/domelement.construct.php

10-07 19:22