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 8.1.6 - 8.1.28, 8.2.10 - 8.2.18, 8.3.0 - 8.3.7
bool(true) bool(false) bool(true) bool(false)

preferences:
65.66 ms | 402 KiB | 29 Q