3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test( $input) { $doc = new DOMDocument; $doc->loadHTML( $input); $p = $doc->getElementsByTagName('p')->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 = ' <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 href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0838.jpg"> <img class="aligncenter size-full wp-image-1931" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0838.jpg" width="1024" height="768" /> </a> <a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0841.jpg"> <img class="aligncenter size-full wp-image-1932" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0841.jpg" width="1024" height="768" /> </a> <a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0872.jpg"> <img class="aligncenter size-full wp-image-1934" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0872.jpg" width="1024" height="768" /> </a> <a href="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0884.jpg"> <img class="aligncenter size-full wp-image-1935" alt="sports championship competition" src="http://inorbit.in/whitefield/wp-content/uploads/sites/4/2014/06/IMG_0884.jpg" width="1024" height="768" /> </a> </a>'; // ok test( $input);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Warning: DOMDocument::loadHTML(): Unexpected end tag : a in Entity, line: 18 in /in/Vh7MP on line 4 Warning: Attempt to read property "childNodes" on null in /in/Vh7MP on line 6 Warning: foreach() argument must be of type array|object, null given in /in/Vh7MP on line 8 NOT ok
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Warning: DOMDocument::loadHTML(): Unexpected end tag : a in Entity, line: 18 in /in/Vh7MP on line 4 Notice: Trying to get property 'childNodes' of non-object in /in/Vh7MP on line 6 Warning: Invalid argument supplied for foreach() in /in/Vh7MP on line 8 NOT ok
Output for 7.3.32 - 7.3.33
Warning: DOMDocument::loadHTML(): Unexpected end tag : a in Entity, line: 18 in /in/Vh7MP on line 4 Warning: Invalid argument supplied for foreach() in /in/Vh7MP on line 8 NOT ok
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
Warning: DOMDocument::loadHTML(): Unexpected end tag : a in Entity, line: 18 in /in/Vh7MP on line 4 Notice: Trying to get property of non-object in /in/Vh7MP on line 6 Warning: Invalid argument supplied for foreach() in /in/Vh7MP on line 8 NOT ok
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/Vh7MP on line 5
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/Vh7MP on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/Vh7MP on line 5
Process exited with code 255.

preferences:
309.13 ms | 401 KiB | 456 Q