PHP Function List
strip_tags() doesn't exist. Closest matches:
- strip_tags
- stripos
- strripos
- strpos
- mb_stripos
- str_getcsv
- strrpos
- stristr
- str_pad
- imap_status
- rpm_get_tag
- mb_strripos
- easter_days
- ktaglib_tag
- tostring
- php_strip_whitespace
- strptime
- ftp_pasv
- tostring
- stripslashes
Site Search Results
-
the strip_tags() function in both php 4.3.8 and 5.0.2 (probably many more, but these are the only 2 versions I tested with) have a max tag length of 1024. If you're trying to process a tag over this limit, strip_tags will not return that line (as if it were ...
-
This function tries to return a string with all NUL bytes, HTML and PHP tags stripped from a given str. It uses the same tag stripping state machine as the fgetss() function.
-
$title = strip_tags (@ $match [ 1 ]); } ?> Note the strip_tags. Another thing to be careful of is to check for ", <, and >. You will need to strip those out if you are posting the output to a form. Also, it is probably best to use the /i modifier, because some ...
-
$array["GIF Create Support"] = trim(str_replace("GIF Create Support", "", strip_tags($line))); if(strpos($line, "GIF Support")!==false) $gif_support = trim(str_replace("GIF Support", "", strip_tags($line)));
-
return substr_replace(strip_tags($string),$repl,$limit-strlen($repl)); } else { return $string; } } Usage: $max_length=10;//the max number of characters you want to display $too_long_string="BLAH BLAH BLAH BLAH BLAH etc.";//the string ...
-
//$string = htmlspecialchars_decode(strip_tags($string)); // optional $t = array(' '=>1, '_'=>1, "\x20", "\xA0", "\x0A", "\x0D", "\x09", "\x0B", '='=>1, '+'=>1, '-'=>1, '*'=>1, '/'=>1, '\\'=>1, ','=>1, '.'=>1, ';'=>1, ':'=>1, '"'=>1, '\''=>1, '['=>1 ...
-
* Like strip_tags() but inverse; the strip_tags tags will be stripped, not kept. * strip_tags: string with tags to strip, ex: "<a><p><quote>" etc. * strip_content flag: TRUE will also strip everything between open and closed tag
-
Also threw in a very related br2p function for all of those folks who want to strip away the <br /> tags which give their designers the blues. /** * replacement for php's nl2br tag that produces more designer friendly html
-
string.strip_tags (since PHP 5.0.0) Use of this filter is equivalent to processing all stream data through the strip_tags() function. It accepts parameters in one of two forms: Either as a string containing a list of tags similar to the second ...
-
$html_reg = '/<+\s*\/*\s*([A-Z][A-Z0-9]*)\b[^>]*\/*\s*>+/i'; echo htmlentities ( preg_replace ( $html_reg, '', $html ) ); // This extracts only a small portion of the text echo htmlentities (strip_tags ($html));?>

Other forms of search
To search the string "strip_tags()" 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.
