Voting

: max(nine, five)?
(Example: nine)

The Note You're Voting On

Mr. P
16 years ago
Note that offset is not the same thing as key. Offset always starts at 0, while keys might be any number.

So this:

<?php print_r(array_slice(array(0 => 0, 5 => 5, 13 => 13),1)); ?>

will result in this:
Array
(
[0] => 5
[1] => 13
)

<< Back to user notes page

To Top