3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html=<<<HTML <html> <body> <table id="news" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="539" height="35"><span><strong>Info to Extract</strong></span></td> </tr> <tr> <td height="35" class="texto10">Martes, 02 de Octubre de 2012 | Autor: Trovert</td> </tr> <tr> <td height="35" class="texto12Gris"><p><strong>Info To extract</strong></p> <p><strong>&nbsp;</strong></p> <p><strong>Casa de Gobierno: (a 9 cuadras del hostel)</strong></p> <img title="title" src="../images/theimage.jpg" width="400" height="266" /> </td> </tr> </table> </body> </html> HTML; function walkNode($node) { $str=""; if($node->nodeType==XML_TEXT_NODE) { $str.=$node->nodeValue; } elseif(strtolower($node->nodeName)=="img") { $str.='<img src="'.$node->attributes->getNamedItem("src")->nodeValue.'" />'; } if($node->firstChild) $str.=walkNode($node->firstChild); if($node->nextSibling) $str.=walkNode($node->nextSibling); return $str; } $dom=new DOMDocument(); $dom->loadHTML($html); $xpath=new DOMXPath($dom); $tds=$xpath->query('//table[@id="news"]//tr[position()>0]/td'); foreach($tds as $td) { echo walkNode($td->firstChild); echo "\n"; }
Output for 8.0.30, 8.1.22 - 8.1.28, 8.2.9 - 8.2.18, 8.3.0 - 8.3.6
Info to Extract Martes, 02 de Octubre de 2012 | Autor: Trovert Info To extract   Casa de Gobierno: (a 9 cuadras del hostel) <img src="../images/theimage.jpg" />
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.29, 8.1.0 - 8.1.21, 8.2.0 - 8.2.8
Info to Extract Martes, 02 de Octubre de 2012 | Autor: Trovert Info To extract   Casa de Gobierno: (a 9 cuadras del hostel) <img src="../images/theimage.jpg" />
Output for 4.4.3 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/mIZer on line 33
Process exited with code 255.
Output for 4.4.2
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/mIZer on line 34
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/mIZer on line 33
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/mIZer on line 33
Process exited with code 255.

preferences:
274.84 ms | 401 KiB | 356 Q