PHP: end() function
PHP: Set the internal pointer of an array to its last element
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.
Example:
<?php
$subject = array('Language', 'English', 'Math', 'Science');
echo end($subject);
?>
Output:
Science
Pictorial Presentation:

View the example in the browser
Practice here online :
See also
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join