innerHTML in php DomDocument does not work in simple PHP script and I can't set the inner html of html element by id, There is no error/warning! what should I do ?
(I also checked the file name and the html element 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();
the out put is blank.