From a2850c185a1b95518cf66002a9080a2830d72b00 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Thu, 13 Sep 2001 07:49:58 +0000 Subject: [PATCH] Added example for strip_tags() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@57495 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/functions/strings.xml b/functions/strings.xml index b151960731..0ec4789d47 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -2490,6 +2490,14 @@ if (!strcasecmp($var1, $var2)) { + + + <function>strip_tags</function> example + +$string = strip_tags($string, '<a><b><i>'); + + +