Strip tags from a string

David Carr

1 min read - 5th May, 2011

From time to time you may need to remove certain tags from a string but leave other tags in tact, This tutorial will show you how to accomplish this.

You can use strip_tags() to remove all tags or specify which tags are allowed generally this is fine but what if you have a lot of different tags that you want to leave alone and only remove a one or more tags using strip_tags() you would need to specify every single tag you want to allow which can get very tiresome, a much better approach would be if you could simple say remove only the tags you specify.

There is no such function built into PHP to do that but making your own function to do this is thankfully very simple. All that needs to be passed to the function is the string and the tags you want to remove:

strip_only($str, '<br /><hr />');

The function scans all the tags in the string and if found removes them this is all done is a loop then once finished returns the string. 

function strip_only($str, $tags) {

if(!is_array($tags)) {

$tags = (strpos($str, '>') !== false ? explode('>', str_replace('<', '', $tags)) : array($tags));

if(end($tags) == '') array_pop($tags);

}

foreach($tags as $tag) $str = preg_replace('#</?'.$tag.'[^>]*>#is', '', $str);

return $str;

}

 

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.