- Support PHP 4, PHP 5
The end()
function sets an internal array pointer to the last element and returns its value.
current()
each()
prev()
next()
echo end(['apple','banana','cranberry',]); // prints cranberry
$a = [];$a[1] = 1;$a[0] = 0;echo end($a); // prints 0
# | Type | Description |
---|---|---|
1 | array |
The name of the array to work with. |
Returns the value of the last element or false
for an empty array.
None
Jan Barášek Více o autorovi
Autor článku pracuje jako seniorní vývojář a software architekt v Praze. Navrhuje a spravuje velké webové aplikace, které znáte a používáte. Od roku 2009 nabral bohaté zkušenosti, které tímto webem předává dál.
Rád vám pomůžu:
Články píše Jan Barášek © 2009-2024 | Kontakt | Mapa webu
Status | Aktualizováno: ... | en