@@ -68,11 +68,11 @@ PHP X.Y UPGRADE NOTES
68
68
- Core
69
69
. Added null coalesce operator (??).
70
70
(RFC: https://wiki.php.net/rfc/isset_ternary)
71
- . Support for strings with length >= 2^31 bytes in 64 bit builds
72
- . Closure::call() method added
71
+ . Support for strings with length >= 2^31 bytes in 64 bit builds.
72
+ . Closure::call() method added.
73
73
. Added \u{xxxxxx} Unicode Codepoint Escape Syntax for double-quoted strings
74
74
and heredocs.
75
- . define() now supports arrays as constant values, fixing an oversight where define() did not support arrays yet const syntax did. (Andrea, Dmitry)
75
+ . define() now supports arrays as constant values, fixing an oversight where define() did not support arrays yet const syntax did.
76
76
77
77
- Standard
78
78
. intdiv() function for integer division added.
@@ -96,19 +96,19 @@ PHP X.Y UPGRADE NOTES
96
96
97
97
- parse_ini_file():
98
98
- parse_ini_string():
99
- Added scanner mode INI_SCANNER_TYPED to yield typed .ini values.
99
+ . Added scanner mode INI_SCANNER_TYPED to yield typed .ini values.
100
100
- unserialize():
101
- Added second parameter for unserialize function
102
- (RFC: https://wiki.php.net/rfc/secure_unserialize) allowing to specify
103
- acceptable classes:
104
- unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]);
101
+ . Added second parameter for unserialize function
102
+ (RFC: https://wiki.php.net/rfc/secure_unserialize) allowing to specify
103
+ acceptable classes:
104
+ unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]);
105
105
106
106
107
107
========================================
108
108
6. New Functions
109
109
========================================
110
110
- GMP
111
- Added gmp_random_seed()
111
+ . Added gmp_random_seed()
112
112
113
113
========================================
114
114
7. New Classes and Interfaces
@@ -145,8 +145,8 @@ PHP X.Y UPGRADE NOTES
145
145
========================================
146
146
147
147
- Core
148
- . Support for native 64 bit integers in 64 bit builds
149
- . Support for large files in 64 bit builds
148
+ . Support for native 64 bit integers in 64 bit builds.
149
+ . Support for large files in 64 bit builds.
150
150
151
151
========================================
152
152
13. Other Changes
@@ -156,4 +156,4 @@ PHP X.Y UPGRADE NOTES
156
156
. Instead of being undefined and platform-dependent, NaN and Infinity will
157
157
always be zero when casted to integer.
158
158
. Calling a method on a non-object no longer raises a fatal error; see
159
- also: https://wiki.php.net/rfc/catchable-call-to-member-of-non-object
159
+ also: https://wiki.php.net/rfc/catchable-call-to-member-of-non-object.
0 commit comments