Inspectopedia
 
2024.3

'array_push()' with single element

Info
New
Last modified: 03 December 2024

Reports the array_push() calls that are used to add a single element to an array. In such cases, it is recommended to use $array[] = instead, which adds no overhead of calling a function.

See array_push (php.net) for details.