w3resource

PHP: strip_tags() function

PHP: Strip HTML and PHP tags from a string

The strip_tags() function is used to strip a string from HTML, XML, and PHP tags.

Version:

(PHP 4 and above)

Syntax:

string strip_tags(input_string, allowable_tags)

Parameters:

Name Description Required /
Optional
Type
input_string The input string. Required String
allowable_tags Specified tags which will not be removed. Optional String

Return value:

Returns the stripped string.

Value Type: string.

Pictorial Presentation

php-string-strip_tags()

Example:

<?php
$input_string = '<b>w3resource.com</b>';
echo 'Before strip : '.$input_string.'<br>';
echo 'After strip : '.strip_tags('<b>w3resource.com</b>');
?>

Output:

Before strip: w3resource.com
After strip : w3resource.com

View the example in the browser

See also

PHP Function Reference

Previous: strcspn
Next: stripcslashes



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/php/function-reference/strip_tags.php