PHP 8.1 | RemovedIniDirectives: account for PHP 8.1 changes#1320
Merged
PHP 8.1 | RemovedIniDirectives: account for PHP 8.1 changes#1320
Conversation
…ndings` ini directive > The `auto_detect_line_endings` INI directive is deprecated. If necessary, handle "\r" line breaks manually instead. Includes unit tests. Refs: * https://www.php.net/manual/en/migration81.deprecated.php#migration81.deprecated.standard * https://wiki.php.net/rfc/deprecations_php_8_1#auto_detect_line_endings_ini_setting * php/php-src@232aa34
…ni directive > The `log_errors_max_len` ini setting has been removed. It no longer had an effect since PHP 8.0. Includes unit tests. Refs: * https://github.com/php/php-src/blob/3a71fcf5caf042a4ce8a586a6b554fd70432e1e2/UPGRADING#L622-L623 * php/php-src#6838 * php/php-src@3ccc040
> The ini settings `date.default_latitude`, `date.default_longitude` and `date.sunset_zenith` are marked as deprecated in the documentation. In the next major version, ... the ini settings will be removed. Note: these ini settings are "soft" deprecated in PHP (i.e. without notice). Includes unit tests. Refs: * https://wiki.php.net/rfc/deprecations_php_8_1#date_sunrise_and_date_sunset * php/php-src#7222 * php/php-src@5bb83b3
…i directive > The `filter.default` INI directive is deprecated. Note: the `filter.default_options` ini directive is "soft" deprecated, i.e. PHP will not throw a deprecation notice, but the RFC covers that the ini directive _will_ be removed in PHP 9.0. Includes unit tests. Refs: * https://www.php.net/manual/en/migration81.deprecated.php#migration81.deprecated.filter * https://wiki.php.net/rfc/deprecations_php_8_1#filterdefault_ini_setting * php/php-src@aa733e8
> The `oci8.old_oci_close_semantics` INI directive is deprecated. Includes unit tests. Refs: * https://www.php.net/manual/en/migration81.deprecated.php#migration81.deprecated.oci8 * https://wiki.php.net/rfc/deprecations_php_8_1#oci8old_oci_close_semantics_ini_setting * php/php-src#7258 * php/php-src@e120d52
47 tasks
wimg
approved these changes
Mar 16, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PHP 8.1 | RemovedIniDirectives: handle deprecated
auto_detect_line_endingsini directiveIncludes unit tests.
Refs:
PHP 8.1 | RemovedIniDirectives: handle removed log_errors_max_len ini directive
Includes unit tests.
Refs:
PHP 8.1 | RemovedIniDirectives: handle deprecated date ini directives
Note: these ini settings are "soft" deprecated in PHP (i.e. without notice).
Includes unit tests.
Refs:
PHP 8.1 | RemovedIniDirectives: handle deprecated filter.default ini directive
Note: the
filter.default_optionsini directive is "soft" deprecated, i.e. PHP will not throw a deprecation notice, but the RFC covers that the ini directive will be removed in PHP 9.0.Includes unit tests.
Refs:
PHP 8.1 | RemovedIniDirectives: handle deprecated oci8 ini directive
Includes unit tests.
Refs:
Related to #1299