I am trying to parse a HTML file using DOMDocument class in PHP.
The sample HTML file is
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title></title>
</head>
<body>
<p id="myparagraph"></p>
</body>
</html>
ve ben kullanarak yüklenen
$document = new DOMDocument();
$document->loadHtmlFile("page.html");
Şimdi kimliği bu şekilde p öğesi almak için deneyin
print_r($document->getElementById("myparagraph"));
Bu nedense çalışmıyor. Peki bu nesi var?