String FiltersEach of these filters does precisely what their name implies and correspond to the behavior of a built-in php string handling function. For more information on a given filter, refer to the manual page for the corresponding function. string.rot13Use of this filter is equivalent to processing all stream data through the str_rot13 function. Example #1 string.rot13
string.toupperUse of this filter is equivalent to processing all stream data through the strtoupper function. Example #2 string.toupper
string.tolowerUse of this filter is equivalent to processing all stream data through the strtolower function. Example #3 string.tolower
string.strip_tagsUse 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 parameter of the strip_tags function, or as an array of tag names.
Warning
This feature has been DEPRECATED as of PHP 7.3.0. Relying on this feature is highly discouraged. Example #4 string.strip_tags
|