File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1172,6 +1172,9 @@ PHP 8.4 UPGRADE NOTES
1172
1172
ZTS builds under highly concurrent loads. This affects the `printf()` family
1173
1173
of functions as well as serialization functions such as `json_encode()`,
1174
1174
`serialize()`.
1175
+ . `sprintf()` using only `%s` and `%d` will be compiled into the equivalent
1176
+ string interpolation, avoiding the overhead of a function call and repeatedly
1177
+ parsing the format string.
1175
1178
1176
1179
- DOM:
1177
1180
. The performance of DOMNode::C14N() is greatly improved for the case without
@@ -1201,6 +1204,10 @@ PHP 8.4 UPGRADE NOTES
1201
1204
- PCRE:
1202
1205
. Improved the performance of named capture groups.
1203
1206
1207
+ - Random:
1208
+ . Improved the performance of \Random\Randomizer, with a specific focus
1209
+ on the getBytes() and getBytesFromString() methods.
1210
+
1204
1211
- SimpleXML:
1205
1212
. Improved performance and reduce memory consumption of XML serialization.
1206
1213
You can’t perform that action at this time.
0 commit comments