NEWS and UPGRADING for array_chunk

This commit is contained in:
Niels Dossche 2025-07-21 23:00:44 +02:00
parent 1b169bf28e
commit 95f1350ca8
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5
2 changed files with 2 additions and 0 deletions

1
NEWS
View file

@ -24,6 +24,7 @@ PHP NEWS
. Implement #71517 (Implement SVG support for getimagesize() and friends). . Implement #71517 (Implement SVG support for getimagesize() and friends).
(nielsdos) (nielsdos)
. Optimized PHP html_entity_decode function. (Artem Ukrainskiy) . Optimized PHP html_entity_decode function. (Artem Ukrainskiy)
. Minor optimization to array_chunk(). (nielsdos)
- URI: - URI:
. Empty host handling is fixed. (Máté Kocsis) . Empty host handling is fixed. (Máté Kocsis)

View file

@ -697,6 +697,7 @@ PHP 8.5 UPGRADE NOTES
. Improved unpack() performance with nameless repetitions by avoiding . Improved unpack() performance with nameless repetitions by avoiding
creating temporary strings and reparsing them. creating temporary strings and reparsing them.
. Improved pack() performance. . Improved pack() performance.
. Minor improvements in array_chunk() performance.
- XMLReader: - XMLReader:
. Improved property access performance. . Improved property access performance.