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); $tds = array(); var_dump($xpath->query('//table[@class="grilla"]/tbody/tr/td/text()')); foreach($xpath->query('//table[@class="grilla"]/tbody/tr/td/text()') as $key => $td) { array_push($tds, $td); } $ee = array_chunk($tds, 2); print_r($ee);
Output for 8.3.0 - 8.3.6
object(DOMNodeList)#11 (1) { ["length"]=> int(8) } Array ( [0] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [1] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13115 - 2010 [data] => 13115 - 2010 [length] => 12 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 13115 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13115 - 2010 ) ) [2] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [3] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13116 - 2011 [data] => 13116 - 2011 [length] => 12 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 13116 - 2011 [nodeType] => 3 [parentNode] => (object value omitted) [parentElement] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [isConnected] => 1 [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13116 - 2011 ) ) )
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
object(DOMNodeList)#11 (1) { ["length"]=> int(8) } Array ( [0] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [1] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13115 - 2010 [data] => 13115 - 2010 [length] => 12 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 13115 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13115 - 2010 ) ) [2] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [3] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13116 - 2011 [data] => 13116 - 2011 [length] => 12 [previousElementSibling] => [nextElementSibling] => [nodeName] => #text [nodeValue] => 13116 - 2011 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13116 - 2011 ) ) )
Output for 7.3.16 - 7.3.33, 7.4.4 - 7.4.33
object(DOMNodeList)#11 (1) { ["length"]=> int(8) } Array ( [0] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [1] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13115 - 2010 [data] => 13115 - 2010 [length] => 12 [nodeName] => #text [nodeValue] => 13115 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13115 - 2010 ) ) [2] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [3] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13116 - 2011 [data] => 13116 - 2011 [length] => 12 [nodeName] => #text [nodeValue] => 13116 - 2011 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => (object value omitted) [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13116 - 2011 ) ) )
Output for 7.0.20, 7.1.5 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.12, 7.4.0 - 7.4.3
object(DOMNodeList)#11 (1) { ["length"]=> int(8) } Array ( [0] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [1] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13115 - 2010 [data] => 13115 - 2010 [length] => 12 [nodeName] => #text [nodeValue] => 13115 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13115 - 2010 ) ) [2] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [3] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13116 - 2011 [data] => 13116 - 2011 [length] => 12 [nodeName] => #text [nodeValue] => 13116 - 2011 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [nextSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13116 - 2011 ) ) )
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.6, 7.1.0
object(DOMNodeList)#11 (1) { ["length"]=> int(8) } Array ( [0] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [1] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13115 - 2010 [data] => 13115 - 2010 [length] => 12 [nodeName] => #text [nodeValue] => 13115 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13115 - 2010 ) ) [2] => Array ( [0] => DOMText Object ( [wholeText] => 2 JPL PROVIDENCIA [data] => 2 JPL PROVIDENCIA [length] => 17 [nodeName] => #text [nodeValue] => 2 JPL PROVIDENCIA [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 2 JPL PROVIDENCIA ) [1] => DOMText Object ( [wholeText] => 018092 - 2010 [data] => 018092 - 2010 [length] => 13 [nodeName] => #text [nodeValue] => 018092 - 2010 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 018092 - 2010 ) ) [3] => Array ( [0] => DOMText Object ( [wholeText] => OVALLE JPL [data] => OVALLE JPL [length] => 10 [nodeName] => #text [nodeValue] => OVALLE JPL [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => OVALLE JPL ) [1] => DOMText Object ( [wholeText] => 13116 - 2011 [data] => 13116 - 2011 [length] => 12 [nodeName] => #text [nodeValue] => 13116 - 2011 [nodeType] => 3 [parentNode] => (object value omitted) [childNodes] => [firstChild] => [lastChild] => [previousSibling] => [attributes] => [ownerDocument] => (object value omitted) [namespaceURI] => [prefix] => [localName] => [baseURI] => [textContent] => 13116 - 2011 ) ) )

preferences:
243.79 ms | 418 KiB | 226 Q