当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现补齐关闭的HTML标签

发布:smiling 来源: PHP粉丝网  添加日期:2019-11-11 15:01:51 浏览: 评论:0 

本文实例讲述了PHP实现补齐关闭的HTML标签。分享给大家供大家参考,具体如下:

很多时候,在我们做文章截取摘要的时候,如果出现HTML的内容,会出现截取的文章没有结束的HTML标签。这样的情况下就会出现页面样式错乱的问题,这 个时候我们需要的就是把缺少的结束标签加批量加上。在www.php.net官网看到一个比较好处理的一个函数,展示如下:

  1. function CloseTags($html
  2.  
  3.  
  4.   // strip fraction of open or close tag from end (e.g. if we take first x characters, we might cut off a tag at the end!) 
  5.  
  6.   $html = preg_replace('/<[^>]*$/','',$html); // ending with fraction of open tag 
  7.  
  8.   // put open tags into an array 
  9.  
  10.   preg_match_all('#<([a-z]+)(?: .*)?(?<!--[/|/ ])-->#iU'$html$result); 
  11.  
  12.   $opentags = $result[1]; 
  13.  
  14.   // put all closed tags into an array 
  15.  
  16.   preg_match_all('#<!--([a-z]+)-->#iU'$html$result); 
  17.  
  18.   $closetags = $result[1]; 
  19.  
  20.   $len_opened = count($opentags); 
  21.  
  22.   // if all tags are closed, we can return 
  23.  
  24.   if (count($closetags) == $len_opened) { 
  25.  
  26.    return $html
  27.  
  28.   } 
  29.  
  30.   // close tags in reverse order that they were opened 
  31.  
  32.   $opentags = array_reverse($opentags); 
  33.  
  34.   // self closing tags 
  35.  
  36.   $sc = array('br','input','img','hr','meta','link'); 
  37.  
  38.   // ,'frame','iframe','param','area','base','basefont','col' 
  39.  
  40.   // should not skip tags that can have content inside! 
  41.  
  42.   for ($i=0; $i < $len_opened$i++) 
  43.  
  44.   { 
  45.  
  46.    $ot = strtolower($opentags[$i]); 
  47.  
  48.    if (!in_array($opentags[$i], $closetags) && !in_array($ot,$sc)) 
  49.  
  50.    { 
  51.  
  52.     $html .= '<!--'.$opentags[$i].'-->'
  53.  
  54.    } 
  55.  
  56.    else 
  57. //phpfensi.com 
  58.    { 
  59.  
  60.     unset($closetags[array_search($opentags[$i], $closetags)]); 
  61.  
  62.    } 
  63.  
  64.   } 
  65.  
  66.   return $html
  67.  

测试使用的结果:

  1. <?php 
  2.  
  3. $content = '<div><p><span>越发忙碌的你,是否想给自己放个假?专注工作的你,是否还记得上一次锻炼是什么时候?优伴户外旅行,给你不一样的旅行体验:给心自由,便处处都是风景!'
  4.  
  5. echo CloseTags($content); 
  6.  
  7. /* 
  8.  
  9. 返回的结果是: 
  10.  
  11. </span></p><div><p><span> 
  12.  
  13. 越发忙碌的你,是否想给自己放个假?专注工作的你,是否还记得上一次锻炼是什么时候?优伴户外旅行,给你不一样的旅行体验:给心自由,便处处都是风景!</span></p></div> 
  14.  
  15. */ 
  16.  
  17. ?> 
  18.  
  19. </div> 

Tags: PHP补齐HTML

分享到: