PHP: pos() function
PHP: Return the current element in an array
The pos() function is used to fetch the value of the current element in an array. The function is an alias of current().
Version:
(PHP 4 and above)
Syntax:
pos(array_name)
Parameters:
Name | Description | Required / Optional |
Type |
---|---|---|---|
array_name | The input array. | Required | Array |
Return value:
The current element of array_name. If the internal array pointer is beyond the end of the elements list or the array is empty, the function returns FALSE.
Value Type: Mixed
*Mixed: Mixed indicates multiple (but not necessarily all) types.
Example:
<?php
$subject= array('Language','English','Math','Science');
$result = pos($subject);
echo $result;
?>
Output:
Language
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