w3resource logo


PHP end function

PHP : end() function

<<PreviousNext>>

Description

The end() function is used to move the internal pointer of an array to its last element.

Version

(PHP 4 and above)

Syntax

end(array1)

Parameter

Name Description Required /
Optional
Type
array1 Specifies the name of the array. Required Array

Return value

The value of the last element of array1.

Value Type : Mixed*.

*Mixed : Mixed indicates multiple (but not necessarily all) types.

Pictorial Presentation :

php array end() function

Example :

<?php
$subject = array('Language', 'English',  'Math', 'Science');
echo end($subject);
?>

Output :

Science

View the example in the browser

See also

PHP Function Reference

<<PreviousNext>>

Rate this tutorial


Your Rating: not set

Share this tutorial

RSS Feed