Voting

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

The Note You're Voting On

leozmm at outlook dot com
5 years ago
Array can be passed by both REFERENCE and EXPRESSION on `current`, because current doesn't move array's internal pointer,
this is not true for other functions like: `end`, `next`, `prev` etc.

<?php
function foo() {return array(1,2,3);}
echo
current(foo()); // this print '1'
echo end(foo()); // this print error: Only variables should be passed by reference
?>

<< Back to user notes page

To Top