3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test( $input) { $doc = new DOMDocument; $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 = ' <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 git.master, git.master_jit, rfc.property-hooks
Warning: DOMDocument::loadHTML(): Unexpected end tag : a in Entity, line: 21 in /in/nnIOU on line 4 NOT ok

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:
42.08 ms | 401 KiB | 8 Q