<?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.33, 8.2.10 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- bool(true)
bool(false)
bool(true)
bool(false)
preferences:
74.5 ms | 406 KiB | 5 Q