PHP 8.4 introduces an engine optimization that converts calls to `sprintf()` with certain placeholders directly into string interpolation. This improvement reduces the overhead of function calls and enhances overall performance by optimizing frequently used format strings commonly found in PHP codebases.

Sort: