PHP Arrays
There are three different kind of arrays:

Const array, Associative array, Multidimensional array
Numeric array, String array, Multidimensional array
Numeric array, Associative array, Multidimensional array
Numeric array, Associative array, Dimensional array

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
Absent any actual need for choosing one method over the other, does passing arrays by value to a read-only function reduce performance compared to passing them by reference?

No
Yes, but only if the array is large.
Yes, but only if the function modifies the contents of the array.
Yes, because PHP must monitor the execution of the function to determine if changes are made to the array.
Yes, because the interpreter must always create a copy of the array before passing it to the function.

ANSWER DOWNLOAD EXAMIANS APP