File tree 1 file changed +17
-1
lines changed 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,34 @@ PHP 8.0 UPGRADE NOTES
21
21
========================================
22
22
23
23
- Core:
24
- . TBD
24
+ . Removed track_errors ini directive. This means that $php_errormsg is no
25
+ longer available. The error_get_last() function may be used instead.
26
+ . Removed create_function(). Anonymous functions may be used instead.
25
27
26
28
- GD:
27
29
. The deprecated function image2wbmp() has been removed.
28
30
RFC: https://wiki.php.net/rfc/image2wbmp
29
31
. The deprecated functions png2wbmp() and jpeg2wbmp() have been removed.
30
32
RFC: https://wiki.php.net/rfc/deprecate-png-jpeg-2wbmp
31
33
34
+ - GMP:
35
+ . gmp_random() has been removed. One of gmp_random_range() or
36
+ gmp_random_bits() should be used instead.
37
+
32
38
- Intl:
33
39
. The deprecated constant INTL_IDNA_VARIANT_2003 has been removed.
34
40
RFC: https://wiki.php.net/rfc/deprecate-and-remove-intl_idna_variant_2003
35
41
42
+ - Mbstring:
43
+ . The mbstring.func_overload directive has been removed. The related
44
+ MB_OVERLOAD_MAIL, MB_OVERLOAD_STRING, and MB_OVERLOAD_REGEX constants have
45
+ also been removed. Finally, the "func_overload" and "func_overload_list"
46
+ entries in mb_get_info() have been removed.
47
+ . mb_parse_str() can no longer be used without specifying a result array.
48
+
49
+ - Standard:
50
+ . parse_str() can no longer be used without specifying a result array.
51
+
36
52
========================================
37
53
2. New Features
38
54
========================================
You can’t perform that action at this time.
0 commit comments