3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Just compose the HTML sample */ $html='<html><head></head><body>'; $html.='<table class="grilla"><tbody><tr class="textEncabezadoGrilla" bgcolor="#C0DAF1" align="center"> <th>Juzgado Policía Local</th> <th>Rol Causa</th> </tr> <tr> <td class="textgrid2">2 JPL PROVIDENCIA</td> <td class="textgrid2">018092 - 2010</td> </tr> <tr> <td class="textgrid1">OVALLE JPL</td> <td class="textgrid1">13115 - 2010</td> </tr> </tbody></table> <table class="grilla"><tbody><tr class="textEncabezadoGrilla" bgcolor="#C0DAF1" align="center"> <th>Juzgado Policía Local</th> <th>Rol Causa</th> </tr> <tr> <td class="textgrid2">2 JPL PROVIDENCIA</td> <td class="textgrid2">018092 - 2010</td> </tr> <tr> <td class="textgrid1">OVALLE JPL</td> <td class="textgrid1">13116 - 2011</td> </tr> </tbody></table>'; $html.="</body></html>"; $doc=new DOMDocument(); $doc->loadHTML($html); $xpath=new DOMXPath($doc); $table0 = array(); $table1 = array(); foreach($xpath->query('//table[@class="grilla"]') as $key => $table){ $table = "table$key"; foreach($xpath->query("tbody/tr/td/text()", $table) as $node){ array_push($$table, $node->nodeValue); } }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: DOMXPath::query(): Argument #2 ($contextNode) must be of type ?DOMNode, string given in /in/UTUpc:54 Stack trace: #0 /in/UTUpc(54): DOMXPath->query('tbody/tr/td/tex...', 'table0') #1 {main} thrown in /in/UTUpc on line 54
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
73.57 ms | 401 KiB | 8 Q