Voting

: min(six, four)?
(Example: nine)

The Note You're Voting On

Anonymous
9 years ago
The documentation is wrongly phrased: "array_replace() replaces the values of array1" No replacing is done. A new array is created which looks like the one that would have resulted from the described replacement.

If you want to augment the set of indices in an array, use
array_to_be_modified += array_with_indices_to_add;

<< Back to user notes page

To Top