]> granicus.if.org Git - php/commitdiff
Add performance improvement section to UPGRADING
authorNikita Popov <nikita.ppv@gmail.com>
Wed, 26 Dec 2018 21:26:01 +0000 (22:26 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Wed, 26 Dec 2018 21:26:49 +0000 (22:26 +0100)
[ci skip]

UPGRADING

index 7d180e0a913cf7ffeb2dbeed9bcd1a194b5bd856..df747d28ae6f7c103c2134d704b2f4d337dacfdb 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -13,6 +13,7 @@ PHP 7.4 UPGRADE NOTES
 11. Changes to INI File Handling
 12. Windows Support
 13. Other Changes
+14. Performance Improvements
 
 
 ========================================
@@ -224,3 +225,13 @@ PHP 7.4 UPGRADE NOTES
 ========================================
 13. Other Changes
 ========================================
+
+========================================
+14. Performance Improvements
+========================================
+
+- Core:
+  . A specialized VM opcode for the array_key_exists() function has been added,
+    which improves performance of this function if it can be statically
+    resolved. In namespaced code, this may require writing \array_key_exists()
+    or explicitly importing the function.