3v4l.org

run code in 300+ PHP versions simultaneously
<?php function validateHtml($html) { $stack = array(); $tags = preg_split("/(<[^>]+>)/", $html, -1, PREG_SPLIT_DELIM_CAPTURE); foreach ($tags as $tag) { if (preg_match("/^<\/\s*([^\s>]+)\s*>$/", $tag, $matches)) { // closing tag $last = array_pop($stack); if (!$last || $last !== $matches[1]) { return false; } } elseif (preg_match("/^<\s*([^\s>]+)(\s+[^>]+)?\s*>$/", $tag, $matches)) { // opening tag array_push($stack, $matches[1]); } } return count($stack) === 0; } // example usage $html = "<div><p>Some text</p></div>"; var_dump(validateHtml($html)); // true $html = "<div><p>Some text</div>"; var_dump(validateHtml($html)); // false $html = "<div><p>Some text</p><span></span></div>"; var_dump(validateHtml($html)); // true $html = "<div><p>Some text<span></p></span></div>"; var_dump(validateHtml($html)); // false
Output for git.master, git.master_jit, rfc.property-hooks
bool(true) bool(false) bool(true) bool(false)

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