Click to See Complete Forum and Search --> : [RESOLVED] strip_tag function


sc_king
11-01-2007, 03:41 AM
Is there anyway to just strip comments?

NogDog
11-01-2007, 04:52 AM
Untested:

$text = preg_replace('/<!--.*-->/sU', '', $text);

sc_king
11-01-2007, 11:08 PM
thanks nogdog for the quick reply!