Home >> PHP >> reset() function in PHP

reset() function in PHP

The reset() function used for set the internal pointer to the first element of the array.

Syntax

reset(array)

Example

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

echo reset($array);

Output

ram

Post Your Comment

Next Questions
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
$_COOKIE super global variable
$_SESSION super global variable

Copyright ©2022 coderraj.com. All Rights Reserved.