Tips and Notes
Note: HTML comments are always stripped. This cannot be changed with the allow parameter.Example 1
<?php echo strip_tags("Hello <b>world!</b>"); ?> |
Hello world! |
Example 2
<?php echo strip_tags("Hello <b><i>world!</i></b>","<b>"); ?> |
Hello world!
No comments:
Post a Comment