替换html标签 function strip_bad_tags($html) { $s = preg_replace ("@]*>*@", "", $html); return $s; } 替换指定tag,$text是需要替换的文本,tags 是需要替换标签的数组 function strip_selected_tags($text, $tags = array()) { $args = func_get_args(); $text = array_shift($args); $tags = func_num_args() > 2 ? array_diff($args,array($text)) : (array)$tags; foreach ($tags as $tag){ if(preg_match_all('/<'.$tag.'[^>]*>(.*)<\/'.$tag.'>/iU', $text, $found)){ $text = str_replace($found[0],$found[1],$text); } } return $text; }
posted on 2007-12-06 17:14  雨中流泪  阅读(536)  评论(0编辑  收藏  举报
友情链接:
http://www.52cookbook.com ---你的美食天地