PHP FILTER_SANITIZE_STRIPPED
Filter
Complete PHP Filter Reference Manual
Definition and Usage
The FILTER_SANITIZE_STRIPPED filter removes or encodes unwanted characters.
This filter is an alias of the FILTER_SANITIZE_STRING filter.
This filter removes data that could be harmful to the application. It is used to strip tags and remove or encode unwanted characters.
Name: "stripped"
ID-number: 513
Possible options or flags:
FILTER_FLAG_NO_ENCODE_QUOTES - This flag does not encode quotes
FILTER_FLAG_STRIP_LOW - Removes characters with ASCII values below 32
FILTER_FLAG_STRIP_HIGH - Removes characters with ASCII values above 127
FILTER_FLAG_ENCODE_LOW - Encodes characters with ASCII values below 32
FILTER_FLAG_ENCODE_HIGH - Encodes characters with ASCII values above 127
FILTER_FLAG_ENCODE_AMP - Encodes the & character as &
Example
The output of the code is as follows: