Currently seeking new career opportunities in web development, particularly with Laravel, Hire Me

Strip tags from a string

David Carr

Tutorials PHP & MySQL

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;

}

 

Laravel Modules Your Logo Your Logo Your Logo

Become a sponsor

Help support the blog so that I can continue creating new content!

Sponsor

My Latest Book

Modular Laravel Book - Laravel: The Modular way

Learn how to build modular applications with Laravel Find out more

Subscribe to my newsletter

Subscribe and get my books and product announcements.

Learn Laravel with Laracasts

Faster Laravel Hosting

© 2006 - 2024 DC Blog. All code MIT license. All rights reserved.