Jason Paschal wrote:
i'd like to be able to strip only one type of HTML tag from a web document (<a>), but to do that with strip_tags(), i'd have to predict every possible HTML tag that might be used, except for the one i want to strip, and put those in the allowable tags parameter.

That's why I was hoping someone knew of a better way to accomplish this. Any suggestions are welcome.

Thanks in advance,
~j

I'd probably do this:

$str = preg_replace('~<a.+?</a>~is', '', $str);


If you wanted to keep the anchored text and URLs, then something like:

$str = preg_replace('~<a href="(.+?)".*?>(.+?)</a>~is', '$2 [$1]', $str);


HIH, Cristian

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to