PhpStorm
 
Get PhpStorm
You are viewing the documentation for an earlier version of PhpStorm.

Code Inspection: 'array_push()' with single element

Last modified: 16 May 2022

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.