PHP Function List
striptags doesn't exist. Closest matches:
- strip_tags
- stripos
- strripos
- strpos
- mb_stripos
- stristr
- strrpos
- str_pad
- mb_strripos
- strptime
- tostring
- tostring
- str_ireplace
- stripslashes
- strtr
- mb_strpos
- iptcparse
- is_string
- splstring
- stripcslashes
Site Search Results
-
function stripTags ($text, $tags) { // replace php and comments tags so they do not get stripped $text = preg_replace ("@<\?@", "#?#", $text); $text = preg_replace ("@<!--@", "#!--#", $text); // strip tags normally $text = strip_tags ($text, $tags
-
function stripTags ($tag, $string) { // Regular expressions only work with strings if the regexp has been pre-concocted $regExp = "<" . "$tag" . "[^>]*>"; $string = str_replace ("</$tag>", "", $string); $string = ereg_replace ($regExp, "", $string
-
$to_parse = striptags( $to_parse ); // - - - - - - - - - - - - - - - - - - - - - - - - - - - $handle = fopen($tmpfname, "w"); fwrite($handle, $to_parse); fclose($handle); @virtual( $tmpvname.$getvars ); unlink( $tmpfname );} else @virtual( $frequest ...
-
Functions::Call( array( 'Strings', 'StripTags' ), array( '<br>foo<br>bar</b>', '<br><b>' ) ); */ }} $form = array( 'field' => array( 'value' => '<b>foo bar</b><br><script>alert("1");</script>', 'pre ...
-
$_POST = sanitize_request ($methods, $_POST); $_COOKIE = sanitize_request ($methods, $_COOKIE); $_REQUEST = sanitize_request ($methods, $_REQUEST); }?> it currently only trims and adds slashes to the request but it ...
-
function stripTags ($tag, $string) { // Regular expressions only work with strings if the regexp has been pre-concocted $regExp = "<" . "$tag" . "[^>]*>"; $string = str_replace ("</$tag>", "", $string); $string = ereg_replace ($regExp, "", $string
-
function stripTags ($tag, $string) { // Regular expressions only work with strings if the regexp has been pre-concocted $regExp = "<" . "$tag" . "[^>]*>"; $string = str_replace ("</$tag>", "", $string); $string = ereg_replace ($regExp, "", $string
-
function stripTags ($tag, $string) { // Regular expressions only work with strings if the regexp has been pre-concocted $regExp = "<" . "$tag" . "[^>]*>"; $string = str_replace ("</$tag>", "", $string); $string = ereg_replace ($regExp, "", $string
-
function stripTags ($tag, $string) { // Regular expressions only work with strings if the regexp has been pre-concocted $regExp = "<" . "$tag" . "[^>]*>"; $string = str_replace ("</$tag>", "", $string); $string = ereg_replace ($regExp, "", $string
-
$_POST = sanitize_request ($methods, $_POST); $_COOKIE = sanitize_request ($methods, $_COOKIE); $_REQUEST = sanitize_request ($methods, $_REQUEST); }?> it currently only trims and adds slashes to the request but it ...

Other forms of search
To search the string "striptags" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
