rfc:deprecations_php_8_5
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:deprecations_php_8_5 [2024/10/04 13:22] – PDO's uri: scheme timwolla | rfc:deprecations_php_8_5 [2024/11/21 09:38] (current) – Formatting timwolla | ||
---|---|---|---|
Line 14: | Line 14: | ||
* Deprecate '' | * Deprecate '' | ||
* Deprecate PDO's ' | * Deprecate PDO's ' | ||
+ | * Deprecate Reflection*:: | ||
+ | * Deprecate FILTER_DEFAULT constant | ||
+ | * Make '' | ||
+ | * Deprecate FILTER_CALLBACK filter | ||
+ | * Deprecate < | ||
+ | * Deprecate the '' | ||
+ | * Deprecate the '' | ||
+ | * Deprecate the '' | ||
+ | * Deprecate the '' | ||
+ | * Formally deprecate mysqli_execute | ||
+ | * Deprecate < | ||
===== Proposal ===== | ===== Proposal ===== | ||
Line 31: | Line 42: | ||
TODO: https:// | TODO: https:// | ||
+ | |||
+ | ==== Deprecate Reflection*:: | ||
+ | |||
+ | Author: Tim Düsterhus < | ||
+ | |||
+ | TODO: Follow-up for https:// | ||
+ | |||
+ | ==== Deprecate FILTER_DEFAULT constant ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | The < | ||
+ | This has been the case since at least PHP 5.3. | ||
+ | This is confusing and seems to indicate that it corresponds to the filter set by the '' | ||
+ | Moreover, this INI setting was deprecated in [[https:// | ||
+ | |||
+ | As this constant is confusing and misleading, we propose to deprecate it. | ||
+ | |||
+ | ==== Make $filter parameter mandatory for filter_*() functions ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | The < | ||
+ | This filter does **nothing** if no flags are provided. | ||
+ | This behaviour is indicative of a bug, therefore, we propose to make the < | ||
+ | |||
+ | ==== Deprecate FILTER_CALLBACK filter ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | The < | ||
+ | This makes little sense as one can pass the value to filter directly to the function instead of passing by the filter extension. | ||
+ | |||
+ | Similarly, to filter an array of values, it is easier and more intuitive to use the < | ||
+ | |||
+ | As such, we propose to deprecate this filter. | ||
+ | |||
+ | |||
+ | ==== Deprecate filter_input() and filter_input_array() ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | The < | ||
+ | |||
+ | This means that modification to any entry of the superglobal will not be used when calling these functions. | ||
+ | This is showcased by the following PHPT test: | ||
+ | |||
+ | <PHP> | ||
+ | --TEST-- | ||
+ | filter_input() filter with superglobal modified | ||
+ | --EXTENSIONS-- | ||
+ | filter | ||
+ | --GET-- | ||
+ | a=hello | ||
+ | --FILE-- | ||
+ | <?php | ||
+ | |||
+ | var_dump($_GET); | ||
+ | $f1 = filter_input(INPUT_GET, | ||
+ | var_dump($f1); | ||
+ | |||
+ | $_GET[' | ||
+ | var_dump($_GET); | ||
+ | $f2 =filter_input(INPUT_GET, | ||
+ | var_dump($f2); | ||
+ | var_dump($_GET); | ||
+ | |||
+ | ?> | ||
+ | --EXPECT-- | ||
+ | array(1) { | ||
+ | [" | ||
+ | string(5) " | ||
+ | } | ||
+ | bool(false) | ||
+ | array(1) { | ||
+ | [" | ||
+ | string(5) " | ||
+ | } | ||
+ | bool(false) | ||
+ | array(1) { | ||
+ | [" | ||
+ | string(5) " | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | As it is easy and straight forward to have the same behaviour by using | ||
+ | < | ||
+ | and < | ||
+ | we propose to deprecate < | ||
+ | |||
+ | ==== Deprecate the docref_root and docref_ext INI directives ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | Both of these INI settings allow overriding the output of HTML diagnostic errors | ||
+ | (warning, notice, deprecations, | ||
+ | pointing to functions and/or INI settings in error messages generated by calls to '' | ||
+ | |||
+ | This is a debug feature and had some value when the php.net documentation had mirrors, | ||
+ | considering those have been retired, their use is now limited. | ||
+ | |||
+ | As such, we propose deprecating those two INI settings. | ||
+ | |||
+ | |||
+ | ==== Deprecate the error_prepend_string and error_append_string INI directives ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | Both of these INI settings allow overriding the output of HTML diagnostic errors | ||
+ | (warning, notice, deprecations, | ||
+ | |||
+ | This is a development and debugging feature which seems somewhat questionable and of limited use. | ||
+ | |||
+ | As such, we propose deprecating those two INI settings. | ||
+ | |||
+ | |||
+ | ==== Deprecate the report_memleaks INI directive ==== | ||
+ | |||
+ | Author: Gina Peter Banyard < | ||
+ | |||
+ | This INI directive allows to suppress ZendMM memory leaks in debug builds of PHP. | ||
+ | This " | ||
+ | Because this cannot affect production builds of PHP we propose deprecating this INI setting. | ||
+ | |||
+ | ==== Deprecate the register_argc_argv INI directive ==== | ||
+ | |||
+ | Author: Nicolas Grekas < | ||
+ | |||
+ | This INI directive tells PHP whether to declare the argv & argc variables. On the CLI, phpdbg and embed SAPIs it is forced to On. It defaults to Off on other SAPIs. This setting is dangerous on HTTP SAPIs because it allows defining the value of the argv/argc variables from the query string. This is almost always unwanted and certainly unexpected. It can lead to security issues if one reads argv/argc from an HTTP apps while not being aware of this behavior. | ||
+ | |||
+ | We propose to deprecate this INI setting and make in default to Off in PHP 8.5, then to hardcode it to Off for all non-CLI-related SAPIs on PHP 9 (while keeping it hardcoded to On for CLI-related ones). | ||
+ | |||
+ | ==== Formally deprecate mysqli_execute ==== | ||
+ | |||
+ | Author: Tim Düsterhus < | ||
+ | |||
+ | TODO: https:// | ||
+ | |||
+ | ==== Deprecate __construct() and __destruct() in interfaces ==== | ||
+ | |||
+ | Author: Tim Düsterhus < | ||
+ | |||
+ | TODO: https:// | ||
===== Backward Incompatible Changes ===== | ===== Backward Incompatible Changes ===== |
rfc/deprecations_php_8_5.1728048141.txt.gz · Last modified: 2024/10/04 13:22 by timwolla