3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test( $input) { $doc = new DOMDocument; print_r($input); /* $doc->loadHTML( $input); $p = $doc->getElementsByTagName('a'); //->item(0); $children = $p->childNodes; $img_found = false; $error = false; foreach( $children as $child) { if( $child->nodeType == XML_TEXT_NODE && !$img_found) { // Text before the image, OK, continue on continue; } if( $child->nodeType == XML_ELEMENT_NODE) { if( !($child->tagName == 'img')) { // echo "Invalid HTML element found"; $error = true; } else { $img_found = true; } } else { // echo "Invalid node type!"; $error = true; } } if( $img_found && !$error) { echo 'ok' . "\n"; } else { echo 'NOT ok' . "\n"; }*/ } $input = addslashes('<a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/Interschool-championship.gif"><a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0889.jpg"><img class="aligncenter size-full wp-image-1928" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0889.jpg" width="1024" height="768" /></a><a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0830.jpg"><img class="aligncenter size-full wp-image-1929" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0830.jpg" width="1024" height="768" /></a></a>'); // ok test( $input);
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.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 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.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
<a href=\"http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/Interschool-championship.gif\"><a href=\"http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0889.jpg\"><img class=\"aligncenter size-full wp-image-1928\" alt=\"sports championship competition\" src=\"http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0889.jpg\" width=\"1024\" height=\"768\" /></a><a href=\"http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0830.jpg\"><img class=\"aligncenter size-full wp-image-1929\" alt=\"sports championship competition\" src=\"http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0830.jpg\" width=\"1024\" height=\"768\" /></a></a>
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Cannot instantiate non-existent class: domdocument in /in/0n1ki on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: domdocument in /in/0n1ki on line 3

preferences:
254.42 ms | 401 KiB | 460 Q