首页 > 开发 > PHP > 正文

php实现html标签闭合检测与修复方法

2024-05-04 23:37:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现html标签闭合检测与修复方法,可实现针对html标签中结束标签的检测与补全功能,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php实现html标签闭合检测与修复方法。分享给大家供大家参考。具体如下:

html标签闭合检测与修复,说的有点大 , 并没有考虑的很完整,没有使用正则表达式, 适用于html文件中只有开始标签没有结束标签, 是有结束标签没有开始标签的情况。标签闭合的位置需要根据需求调整

 

 
  1. <?php 
  2. $str = ' 
  3. <div data="<li></li>"
  4. <img src="http://www.baidu.com/123123.png"/> 
  5. <div2> 
  6. <a>content</a> 
  7. </div2> 
  8. <ul> 
  9. <li> 
  10. </li> 
  11. </ul> 
  12. <p> 
  13. content full 
  14. </p> 
  15. this is content</test1> 
  16. this is content</test2> 
  17. <test4 data="liujinjing"> This is cont 
  18. <li></li> 
  19. <test3 data="liujinjing"> This is content 
  20. <div3> 
  21. </div3> 
  22. </div4> 
  23. </div> 
  24. </div> 
  25. <div6 style="width:90px; "this is content'; 
  26. $str_len = strlen($str); 
  27. //记录起始标签 
  28. $pre_data = array(); 
  29. //记录起始标签位置 
  30. $pre_pos = array(); 
  31. $last_data = array(); 
  32. $error_data = array(); 
  33. $error_pos = array(); 
  34. $i = 0; 
  35. //标记为 < 开始 
  36. $start_flag = false
  37. while( $i < $str_len ) { 
  38. if($str[$i]=="<" && $str[$i+1]!='/' && $str[$i+1]!='!') { 
  39. $i++; 
  40. $_tmp_str = ''
  41. //标记为 < 开始 
  42. $start_flag = true
  43. //标记空白 
  44. $space_flag = false
  45. while($str[$i]!=">" && $str[$i]!="'" && $str[$i]!='"' && $str[$i] !='/' && $i<$str_len){ 
  46. if($str[$i]==' ') { 
  47. $space_flag = true
  48. if(!$space_flag) { 
  49. $_tmp_str .= $str[$i];  
  50. $i++; 
  51. $pre_data[] = $_tmp_str; 
  52. $pre_pos[] = $i; 
  53. else if ($str[$i]=="<" && $str[$i+1]=='/') { 
  54. $i += 2; 
  55. $_tmp_str = ''
  56. while($str[$i]!=">" && $i<$str_len){ 
  57. $_tmp_str .= $str[$i]; 
  58. $i++; 
  59. $last_data[] = $_tmp_str; 
  60. //查看开始标签的上一个值 
  61. if(count($pre_data)>0) { 
  62. $last_pre_node = getLastNode($pre_data, 1); 
  63. if($last_pre_node == $_tmp_str) { 
  64. //配对上, 删除对应位置的值 
  65. array_pop($pre_data); 
  66. array_pop($pre_pos); 
  67. array_pop($last_data); 
  68. else { 
  69. //没有配对上, 有两种情况 
  70. //情况一: 只有闭合标签, 没有开始标签 
  71. //情况二:只有开始标签, 没有闭合标签 
  72. array_pop($last_data); 
  73. $error_data[] = $_tmp_str; 
  74. $error_pos[] = $i; 
  75. else { 
  76. array_pop($last_data); 
  77. $error_data[] = $_tmp_str; 
  78. $error_pos[] = $i;  
  79. }else if ($str[$i]=="<" && $str[$i+1]=="!") { 
  80. $i++; 
  81. while($i<$str_len) { 
  82. if($str[$i]=="-" && $str[$i+1]=="-" && $str[$i+2]==">") { 
  83. $i++; 
  84. break
  85. else { 
  86. $i++; 
  87. $i++; 
  88. }else if($str[$i]=='/' && $str[$i+1]=='>') { 
  89. //跳过自动单个闭合标签 
  90. if($start_flag) { 
  91. array_pop($pre_data); 
  92. array_pop($pre_pos); 
  93. $i+=2; 
  94. }else if($str[$i]=="/" && $str[$i+1]=="*"){ 
  95. $i++; 
  96. while($i<$str_len) { 
  97. if($str[$i]=="*" && $str[$i+1]=="/") { 
  98. $i++; 
  99. break
  100. else { 
  101. $i++; 
  102. $i++; 
  103. }else if($str[$i]=="'"){ 
  104. $i++; 
  105. while($str[$i]!="'" && $i<$str_len) { 
  106. $i++; 
  107. $i++; 
  108. else if($str[$i]=='"'){ 
  109. $i++; 
  110. while($str[$i]!='"' && $i<$str_len ) { 
  111. $i++; 
  112. $i++; 
  113. else { 
  114. $i++; 
  115. //确定起始标签的位置 
  116. function confirm_pre_pos($str, $pre_pos){ 
  117. $str_len = strlen($str); 
  118. $j=$pre_pos; 
  119. while($j < $str_len) { 
  120. if($str[$j] == '"') { 
  121. $j++; 
  122. while ($j<$str_len) { 
  123. if($str[$j]=='"') { 
  124. $j++; 
  125. break
  126. $j++; 
  127. else if($str[$j] == "'") { 
  128. $j++; 
  129. while ($j<$str_len) { 
  130. if($str[$j]=="'") { 
  131. $j++; 
  132. break
  133. $j++; 
  134. else if($str[$j]==">") { 
  135. $j++; 
  136. while ($j<$str_len) { 
  137. if($str[$j]=="<") { 
  138. //退回到原有内容位置 
  139. $j--; 
  140. break
  141. $j++; 
  142. break
  143. }  
  144. else { 
  145. $j++; 
  146. return $j; 
  147. //确定起始标签的位置 
  148. function confirm_err_pos($str, $err_pos){ 
  149. $j=$err_pos; 
  150. $j--; 
  151. while($j > 0) { 
  152. if($str[$j] == '"') { 
  153. $j--; 
  154. while ($j<$str_len) { 
  155. if($str[$j]=='"') { 
  156. $j--; 
  157. break
  158. $j--; 
  159. else if($str[$j] == "'") { 
  160. $j--; 
  161. while ($j<$str_len) { 
  162. if($str[$j]=="'") { 
  163. $j--; 
  164. break
  165. $j--; 
  166. else if($str[$j]==">") { 
  167. $j++; 
  168. break
  169. }  
  170. else { 
  171. $j--; 
  172. return $j; 
  173. //获取数组的倒数第num个值 
  174. function getLastNode(array $arr, $num){ 
  175. $len = count($arr); 
  176. if($len > $num) { 
  177. return $arr[$len-$num]; 
  178. else { 
  179. return $arr[0]; 
  180. //整理数据, 主要是向后看, 进一步进行检查 
  181. function sort_data(&$pre_data, &$pre_pos, &$error_data, &$error_pos){ 
  182. $rem_key_array = array(); 
  183. $rem_i_array = array(); 
  184. //获取需要删除的值 
  185. foreach($error_data as $key=>$value){ 
  186. $count = count($pre_data); 
  187. for($i=($count-1) ; $i>=0; $i--) { 
  188. if($pre_data[$i] == $value && !in_array($i, $rem_i_array)) { 
  189. $rem_key_array[] = $key; 
  190. $rem_i_array[] = $i; 
  191. break
  192. //删除起始标签相应的值 
  193. foreach($rem_key_array as $_item) { 
  194. unset($error_pos[$_item]); 
  195. unset($error_data[$_item]); 
  196. //删除结束标签相应的值 
  197. foreach($rem_i_array as $_item) { 
  198. unset($pre_data[$_item]); 
  199. unset($pre_pos[$_item]); 
  200. //整理数据, 闭合标签 
  201. function modify_data($str, $pre_data, $pre_pos, $error_data, $error_pos){ 
  202. $move_log = array(); 
  203. //只有闭合标签的数据 
  204. foreach ($error_data as $key => $value) { 
  205. // code... 
  206. $_tmp_move_count = 0; 
  207. foreach ($move_log as $pos_key => $move_value) { 
  208. // code... 
  209. if($error_pos[$key]>=$pos_key) { 
  210. $_tmp_move_count += $move_value; 
  211. $data = insert_data($str, $value, $error_pos[$key]+$_tmp_move_count, false); 
  212. $str = $data['str']; 
  213. $move_log[$data['pos']] = $data['move_count']; 
  214. //只有起始标签的数据 
  215. foreach ($pre_data as $key => $value) { 
  216. // code... 
  217. $_tmp_move_count = 0; 
  218. foreach ($move_log as $pos_key => $move_value) { 
  219. // code... 
  220. if($pre_pos[$key]>=$pos_key) { 
  221. $_tmp_move_count += $move_value; 
  222. $data = insert_data($str, $value, $pre_pos[$key]+$_tmp_move_count, true); 
  223. $str = $data['str']; 
  224. $move_log[$data['pos']] = $data['move_count']; 
  225. return $str; 
  226. //插入数据, $type 表示插入数据的方式 
  227. function insert_data($str, $insert_data, $pos, $type) { 
  228. $len = strlen($str); 
  229. //起始标签类型 
  230. if($type==true) { 
  231. $move_count = strlen($insert_data)+3; 
  232. $pos = confirm_pre_pos($str, $pos); 
  233. $pre_str = substr($str, 0, $pos); 
  234. $end_str = substr($str, $pos); 
  235. $mid_str = "</" . $insert_data . ">"
  236. //闭合标签类型 
  237. else { 
  238. $pos = confirm_err_pos($str, $pos); 
  239. $move_count = strlen($insert_data) + 2; 
  240. $pre_str = substr($str, 0, $pos); 
  241. $end_str = substr($str, $pos); 
  242. $mid_str = "<" . $insert_data . ">"
  243. $str = $pre_str.$mid_str.$end_str; 
  244. return array('str'=>$str, 'pos'=>$pos, 'move_count'=>$move_count); 
  245. sort_data($pre_data, $pre_pos, $error_data, $error_pos); 
  246. $new_str = modify_data($str, $pre_data, $pre_pos, $error_data, $error_pos); 
  247. echo $new_str; 
  248. // print_r($pre_data); 
  249. // print_r($pre_pos); 
  250. // print_r($error_data); 
  251. // print_r($error_pos); 
  252. // echo strlen($str); 
  253. // foreach($pre_pos as $value){ 
  254. // $value = confirm_pre_pos($str, $value); 
  255. // for($i=$value-5; $i<=$value; $i++) { 
  256. // echo $str[$i]; 
  257. // } 
  258. // echo "/n"; 
  259. // } 
  260. // foreach($error_pos as $value){ 
  261. // for($i=$value-5; $i<=$value; $i++) { 
  262. // echo $str[$i]; 
  263. // } 
  264. // echo "/n"; 
  265. // } 
  266. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表