Webコンテンツのhtmlタグ補完とフィルタリングの2つの方法

2804 ワード

Webコンテンツのhtmlタグ補完とフィルタリングの2つの方法:
もしあなたのホームページの内容のhtmlラベルが不完全で、一部の表のラベルが不完全でページが混乱したり、あなたの内容以外の局部のhtmlページを含んだりしたら、私たちは関数の方法を書いてhtmlラベルを補完したり、無駄なhtmlラベルをフィルタしたりすることができます. 
php HTMLタグを自動的に補完し、閉じ、関数をフィルタする方法1:
コード:
function closetags($html) {
  preg_match_all('##iU', $html, $result);
  $openedtags = $result[1];
  preg_match_all('#([a-z]+)>#iU', $html, $result);
  $closedtags = $result[1];
  $len_opened = count($openedtags);
  if (count($closedtags) == $len_opened) {
       return $html;
  }
  $openedtags = array_reverse($openedtags);
  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;
}

closetags()解析:array_reverse():この関数は、元の配列の要素を順番に反転し、新しい配列を作成して返します.2番目のパラメータがtrueとして指定されている場合、要素のキー名は変更されません.そうしないと、キー名が失われます.  array_search() : array_search(value,array,strict)、この関数はin_array()と同様に配列内でキー値を検索します.この値が見つかった場合、一致する要素のキー名が返されます.見つからない場合はfalseを返します.3番目のパラメータstrictがtrueとして指定されている場合、対応する要素のキー名は、データ型と値が一致している場合にのみ返されます.
phpはHTMLラベルを自動的に補完し、閉じ、関数をフィルタする方法2:
function checkhtml($html) {
	$html = stripslashes($html);
		preg_match_all("/\/is", $html, $ms);
		$searchs[] = '';
		$replaces[] = '>';
		
		if($ms[1]) {
			$allowtags = 'img|font|div|table|tbody|tr|td|th|br|p|b|strong|i|u|em|span|ol|ul|li';//     
			$ms[1] = array_unique($ms[1]);
			foreach ($ms[1] as $value) {
				$searchs[] = "";
				$value = shtmlspecialchars($value);
				$value = str_replace(array('\\','/*'), array('.','/.'), $value);
				$value = preg_replace(array("/(javascript|script|eval|behaviour|expression)/i", "/(\s+|"|')on/i"), array('.', ' .'), $value);
				if(!preg_match("/^[\/|\s]?($allowtags)(\s+|$)/is", $value)) {
					$value = '';
				}
				$replaces[] = empty($value)?'':"";
			}
		}
		$html = str_replace($searchs, $replaces, $html);
	
	return $html;
}
//  HTML  
function shtmlspecialchars($string) {
	if(is_array($string)) {
		foreach($string as $key => $val) {
			$string[$key] = shtmlspecialchars($val);
		}
	} else {
		$string = preg_replace('/&((#(\d{3,5}|x[a-fA-F0-9]{4})|[a-zA-Z][a-z0-9]{2,5});)/', '&\\1',
			str_replace(array('&', '"', ''), array('&', '"', ''), $string));
	}
	return $string;
}

checkhtml($html)解析:
stripslashes():addslashes()関数によって追加されたスラッシュを削除します.この関数は、データベースまたはHTMLフォームからフェッチされたデータをクリーンアップするために使用します.
Websitesブログに注目してくれてありがとう!