PhP通过id获取元素不起作用

时间:2016-07-18 09:18:38

标签: php dom

我尝试使用DOM来创建一个php文件,以便在我的SQL表更新时将几个表行附加到我的表中。问题是,函数getElementById永远不会工作,我不明白为什么。这是代码:

$doc = new DomDocument();
$doc->validateOnParse = true; 
$doc->load('home.php');
$element = $doc->getElementById('table-responsive');   //this is a div
$teste = $doc->createElement('div');
$element->appendChild($test);

我总是得到错误500,因为找不到getElementById /没有工作。 有什么想法吗?

0 个答案:

没有答案