Answers for "$dom->getElementById"

PHP
37

getelementbyid

document.getElementById("someid");
Posted by: Guest on June-21-2019
0

$dom->getElementById

<?php

$doc = new DomDocument;

// We need to validate our document before referring to the id
$doc->validateOnParse = true;
$doc->Load('my.xml');

echo $doc->getElementById('php-basics') . "\n";

?>
Posted by: Guest on April-15-2021

Browse Popular Code Answers by Language