php DomDocument 中的 innerHTML 在简单的 PHP 脚本中不起作用,我无法通过 id 设置 html 元素的内部 html,没有错误/警告!我应该怎么办 ?
(我还检查了文件名和 html 元素 id)
$index = new DomDocument;
$index->validateOnParse = true;
$index->formatOutput = true;
$index->loadHTML('index.php');
$index->getElementById('element-unique-id')->innerHTML = 'some text';
echo $index->saveHTML();
输出为空白。