Filter Configuration Options
Filter Configuration OptionsNameDefaultChangeableChangelogfilter.default"unsafe_raw"INI_PERDIRDeprecated as of PHP 8.1.0.filter.default_flagsNULLINI_PERDIR Constants
Runtime Runtime
| Name | Default | Changeable | Changelog |
|---|---|---|---|
| filter.default | "unsafe_raw" | INI_PERDIR | Deprecated as of PHP 8.1.0. |
| filter.default_flags | NULL | INI_PERDIR |
Constants
Title
filter.defaultstringFilter all
$_GET,$_POST,$_COOKIE,$_REQUESTand$_SERVERdata by this filter. Original data can be accessed throughfilter_input().Must be the name of a filter which can be determined by using
filter_list()andfilter_id().NoteBe careful about the default flags for the default filters. They should be set explicitly. For example, to configure the default filter to behave exactly like
htmlspecialchars()the default flags must be set to0, as shown in the example below.Configuring the default filter to act like htmlspecialchars
phpfilter.default = full_special_chars filter.default_flags = 0WarningThis INI setting is deprecated as of PHP 8.1.0.
filter.default_flagsintDefault flags to apply when the default filter is set. This is set to
FILTER_FLAG_NO_ENCODE_QUOTESby default for backwards compatibility reasons. SeeFILTER_FLAG_*constants for available flags.