Home >> PHP >> prev() function in PHP

prev() function in PHP

The prev() function used for moves the internal pointer and returns the first element in an array.

Syntax

prev(array)

Example

$array = array("ram", "shyam", "ravi");

echo prev($array);

Output

ram

Post Your Comment

Next Questions
range() function
reset() function
rsort() function
shuffle() function
sizeof() function
sort() function
uasort() function
uksort() function
usort() function
What is the difference between array_combine() and array_merge()
What are the differences between array_diff(), array_diff_assoc() and array_diff_key()
What is the difference between array_intersect_assoc() and array_intersect_key()
What is difference between array_push() and array_pop()
What is difference between array_product() and array_sum()
What is the difference between session and cookie
What is session & work
What are data types
What are super global variable
$GLOBALS super global variable
$_SERVER super global variable
$_REQUEST super global variable
$_POST super global variable
$_GET super global variable
$_FILES super global variable
$_ENV super global variable

Copyright ©2022 coderraj.com. All Rights Reserved.