posts - 22,  comments - 146,  trackbacks - 5
公告
替换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 雨中流泪 阅读(401) 评论(0) 编辑 收藏
友情链接:
http://www.52cookbook.com ---你的美食天地