PHP Manual

End()

22. 08. 2019

Obsah článku

- Support PHP 4, PHP 5

  • Short description: sets the internal pointer of an array to its last element.
  • Requirements.

Description

The end() function sets an internal array pointer to the last element and returns its value.

Similar functions

  • current()
  • each()
  • prev()
  • reset()
  • next()

Example

echo end([
'apple',
'banana',
'cranberry',
]); // prints cranberry

$a = [];
$a[1] = 1;
$a[0] = 0;
echo end($a); // prints 0

Parameters

# Type Description
1 array The name of the array to work with.

Return values

Returns the value of the last element or false for an empty array.

Differences from earlier versions

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:

Související články

1.
2.
Status:
All systems normal.
2024