File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ PHP 8.0 UPGRADE NOTES
43
43
of $this.
44
44
. Removed ability to use array_key_exists() with objects. Use one of isset()
45
45
or property_exists() instead.
46
+ . Made the behavior of array_key_exists() regarding the type of the key
47
+ parameter consistent with isset() and normal array access. All key types now use
48
+ the usual coercions and array/object keys throw a TypeError.
46
49
. Any array that has a number n as its first numeric key will use n+1 for
47
50
its next implicit key. Even if n is negative.
48
51
RFC: https://wiki.php.net/rfc/negative_array_index
@@ -178,6 +181,9 @@ PHP 8.0 UPGRADE NOTES
178
181
. The deprecated constant INTL_IDNA_VARIANT_2003 has been removed.
179
182
RFC: https://wiki.php.net/rfc/deprecate-and-remove-intl_idna_variant_2003
180
183
. The deprecated Normalizer::NONE constant has been removed.
184
+ . The IntlDateFormatter::RELATIVE_FULL, IntlDateFormatter::RELATIVE_LONG,
185
+ IntlDateFormatter::RELATIVE_MEDIUM, and IntlDateFormatter::RELATIVE_SHORT constants
186
+ have been added.
181
187
182
188
- LDAP:
183
189
. The deprecated function ldap_sort has been removed.
You can’t perform that action at this time.
0 commit comments