Voting

: min(five, zero)?
(Example: nine)

The Note You're Voting On

vaclav dot sir at gmail dot com
17 years ago
To that "note": You won't be able to distinguish the end of an array from a boolean FALSE element, BUT you can distinguish the end from a NULL value of the key() function.

Example:
<?php
if (key($array) === null) {
echo
"You are in the end of the array.";
} else {
echo
"Current element: " . current($array);
}
?>

<< Back to user notes page

To Top