3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = '<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <table id="mainTable"> <tr> <td>a</td> </tr> </table> </body> </html>'; $dom = new DOMDocument(); $dom->loadHTML($html); $table = $dom->getElementById('mainTable'); $rowArr = $table->getElementsByTagName('tr'); var_dump($rowArr);

preferences:
35.78 ms | 402 KiB | 5 Q