Query: end
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
END(3) 1 END(3) end - Set the internal pointer of an array to its last elementSYNOPSISmixed end (array &$array)DESCRIPTIONend(3) advances $array's internal pointer to the last element, and returns its value.PARAMETERSo $array - The array. This array is passed by reference because it is modified by the function. This means you must pass it a real variable and not a function returning an array because only actual variables may be passed by reference.RETURN VALUESReturns the value of the last element or FALSE for empty array.EXAMPLESExample #1 end(3) example <?php $fruits = array('apple', 'banana', 'cranberry'); echo end($fruits); // cranberry ?>SEE ALSOcurrent(3), each(3), prev(3), reset(3), next(3). PHP Documentation Group END(3)
Related Man Pages |
---|
array_walk_recursive(3) - php |
arsort(3) - php |
asort(3) - php |
prev(3) - php |
reset(3) - php |
Similar Topics in the Unix Linux Community |
---|
sendmail : 550 host unknown |
Connecting to SUN server from PC |
Sending email with multiple files.. |
How to determine the encoding of this dd image? |
Print byte position of extended ascii character |