如何检查每个HTML标记是否已关闭?

时间:2011-11-24 14:57:31

标签: php validation xhtml

我有这个问题:

用户可以添加HTML说明,它将显示在他的个人资料中;当我显示用户列表时,我也希望显示此描述 因为它可能太长了,我将把它限制为一个固定的长度,但这样做我可以打破HTML语法,打开一些标签。

如何检查外翻是否正常,如果需要,请关闭所有打开的标签?

2 个答案:

答案 0 :(得分:1)

@ tampe125这不是我的代码,但它看起来很有效。

  <?php  /** * close all open xhtml tags at the end of the string

 * * @param string $html

 * @return string

 * @author Milian <mail@mili.de>

 */function closetags($html) {

  #put all opened tags into an array

  preg_match_all('#<([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result);

  $openedtags = $result[1];   #put all closed tags into an array

  preg_match_all('#</([a-z]+)>#iU', $html, $result);

  $closedtags = $result[1];

  $len_opened = count($openedtags);

  # all tags are closed

  if (count($closedtags) == $len_opened) {

    return $html;

  }

  $openedtags = array_reverse($openedtags);

  # close tags

  for ($i=0; $i < $len_opened; $i++) {

    if (!in_array($openedtags[$i], $closedtags)){

      $html .= '</'.$openedtags[$i].'>';

    } else {

      unset($closedtags[array_search($openedtags[$i], $closedtags)]);    }

  }  return $html;}  ?>

答案 1 :(得分:0)

这是一个简单的javascript验证程序,可以进行基本的标记检查。 XML validator

唯一的问题是它会在第一个错误时停止,因此您需要一次解决一个问题。