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.
Something like
$new_text = preg_replace('!<a.*</a>!iU','',$old_text);
will get rid of the <a> tags and leave everything else. Honestly, though, if you're allowing everything else, why not allow these? I can just as easily set up the text with decorations to make it look like a link and give it an "onclick" action to load another page...
-- ---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php