PHP 8.4.2 Released!

Çalışma Anı Yapılandırması

Bu işlevlerin davranışı php.ini içindeki ayarlardan etkilenir.

Filter Configuration Options
İsim Öntanımlı Değişlik Yeri Sürüm Bilgisi
filter.default "unsafe_raw" INI_PERDIR Deprecated as of PHP 8.1.0.
filter.default_flags NULL INI_PERDIR  
INI_* kiplerinin tanımları ve ayrıntılı açıklamaları Yapılandırma ayarlarının yeri bölümünde bulunabilir.

Yapılandırma yönergelerinin kısa açıklamalarını aşağıda bulabilirsiniz.

filter.default string

Filter all $_GET, $_POST, $_COOKIE, $_REQUEST and $_SERVER data by this filter. Original data can be accessed through filter_input().

Must be the name of a filter which can be determined by using filter_list() and filter_id().

Bilginize: Be 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 to 0, as shown in the example below.

Örnek 1 Configuring the default filter to act like htmlspecialchars

filter.default = full_special_chars
filter.default_flags = 0

Uyarı

This INI setting is deprecated as of PHP 8.1.0.

filter.default_flags int
Default flags to apply when the default filter is set. This is set to FILTER_FLAG_NO_ENCODE_QUOTES by default for backwards compatibility reasons. See FILTER_FLAG_* constants for available flags.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top