php剔除a标签 //剔除a标签function tichuA($str){ $str1 = preg_replace("/ ]*/","", $str); $str2 = preg_replace("/\/a/","", $str1); return $str2;}
//剔除a标签 function tichuA($str){ $str1 = preg_replace("/ ]*>/","", $str); $str2 = preg_replace("/<\/a>/","", $str1); return $str2; }