Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #53218, comment 3


Ignore:
Timestamp:
06/21/2021 12:20:39 AM (3 years ago)
Author:
jrf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #53218, comment 3

    initial v1  
    11@johnbillion I've had a quick look and I would strongly recommend against this patch.
    22
    3 The performance of a function like `array_merge()` is often even worse than `func_get_args()`, so in effect, especially with using it twice, this would make one of the most used functions in WP slower instead of faster decreasing the overall performance (which the variadic changes were about).
     3The performance of a function like `array_merge()` is often even worse than `func_get_args()`, so in effect, especially with using it twice, this would make one of the most used functions in WP slower, instead of faster, decreasing the overall performance (which the variadic changes were about).