窗簾、壁紙、地毯、塑膠地板、設計 最多的壁紙素材可以挑選及整體搭的設計配、免費到府丈量 | ![]() | 最高的施工品質來完成客戶所託 達到您最滿意的服務品質與信賴,做到最好的施工品質與最佳的保固服務 |
[php] PHP正則表達式 過濾html |
房東:張先生 發表時間:2012-10-24 |
$contents = preg_replace("/\s+/", " ", $contents); //過濾多餘回車 $contents=preg_replace("/<(\/?img.*?)>/si","",$contents); //過濾img標籤 $contents=preg_replace("/<(\/?font.*?)>/si","",$contents); //過濾font標籤 $contents=preg_replace("/<(head.*?)>(.*?)<(\/head.*?)>/si","",$contents); //過濾head標籤 $contents=preg_replace("/<(select.*?)>(.*?)<(\/select.*?)>/si","",$contents); //過濾select標籤 $contents=preg_replace("/<(strong.*?)>(.*?)<(\/strong.*?)>/si","",$contents); //過濾strong標籤 $contents=preg_replace("/<(label.*?)>(.*?)<(\/label.*?)>/si","",$contents); //過濾label標籤 $contents=preg_replace("/<(a.*?)>(.*?)<(\/a.*?)>/si","",$contents); //過濾a標籤 |
|
廣利不動產-新板特區指名度最高、值得您信賴的好房仲 您的托付,廣利用心為您服務 廣利不動產-板橋在地生根最實在--新板特區指名度最高、值得您信賴的好房仲 完整房訊,房屋、店面熱門精選物件,廣利不動產 優質仲介,房屋租賃、買賣資訊透明,交易真安心! |
1 樓住戶:jack 發表時間:2012-10-24 |
$str = "abc <我是誰 > ghi (正則表示式) fffjkl[你是誰] $pattern = "/<[^>^<]*>/";// 正則表示式格式用於比對 $replacement = ""; // 以此(空)字串來取代 (即刪除) $newStr = preg_replace($pattern, $replacement, $str); echo $newStr; ?> |
2 樓住戶:jeff 發表時間:2012-10-26 |
移除[ ] 主題 $str='[分享] 好租好賣最優值'; $str2='[問題] 誠心指教!'; $str3='[討論]地產會泡沫化?'; echo preg_replace('/\[[^\]]+\]/','',$str); echo preg_replace('/\[[^\]]+\]/','',$str2); echo preg_replace('/\[[^\]]+\]/','',$str3); ?> |
3 樓住戶:creakj 發表時間:2012-11-02 |
移除[] or () 後面文字 $str1 = '打工20歲(40p)回復 1# Soldie'; $str2 = '新竹加油站[30P]........回復 1# g' echo substr($str1, 0, strrpos($str1, ')') + 1); echo substr($str2, 0, strrpos($str2, ']') + 1); |