diff --git a/UPGRADING b/UPGRADING index 97740040a0e90..a8ab10f91c84e 100644 --- a/UPGRADING +++ b/UPGRADING @@ -1172,6 +1172,9 @@ PHP 8.4 UPGRADE NOTES ZTS builds under highly concurrent loads. This affects the `printf()` family of functions as well as serialization functions such as `json_encode()`, `serialize()`. + . `sprintf()` using only `%s` and `%d` will be compiled into the equivalent + string interpolation, avoiding the overhead of a function call and repeatedly + parsing the format string. - DOM: . The performance of DOMNode::C14N() is greatly improved for the case without @@ -1201,6 +1204,10 @@ PHP 8.4 UPGRADE NOTES - PCRE: . Improved the performance of named capture groups. +- Random: + . Improved the performance of \Random\Randomizer, with a specific focus + on the getBytes() and getBytesFromString() methods. + - SimpleXML: . Improved performance and reduce memory consumption of XML serialization.