How can I reset an array in PHP?
Answers were Sorted based on User's Feedback
Answer / jude jeevanraj.p
Sometimes if you are moving through the various elements in
an array, you will want to return the pointer to the
beginning of the array.
This is easily done with the reset function, like this:
reset($array);
This returns the first element and sets it as the current
element.
Here is a little example just to make this technique clear:
<?php
$numbers = array("Item 1","Item 2","Item 3");
next($numbers);
$thisvalue = current($numbers); echo "We are now at
$thisvalue\n\n";
$first = reset($numbers);
echo "Back to $first";
?>
Is This Answer Correct ? | 21 Yes | 1 No |
Answer / ram
The reset () function moves the internal pointer to the
first element of the array. This function returns the value
of the first element in the array on success, or FALSE on
failure.
Syntax: reset(array)
<?php
echo date("Y-m-d");
$people = array("Prasad", "Ram", "vidhya");
echo current($people) . "<br />";
echo next($people) . "<br />";
echo reset($people);
?>
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / madipally
Its very simple uday,
we have an array of numbers , which contains
"Item1","Item2","Item3".
when we call next($numbers) , the pointer will be jump to
the next item, in this case Item2.After resetting using
reset($numbers) pointer will move to the first location that
is "Item1".
Is This Answer Correct ? | 7 Yes | 4 No |
Answer / uday
hello ur answer is too difcult to learn plz answer in
simple very complicated
Is This Answer Correct ? | 3 Yes | 11 No |
What is the maximum size of a table in mysql?
What are the main error types in php?
What is use of count() function in php?
I have 10 elements of Array, how can i remove 5 array element, with single function.
What can php do?
What are the differences between php3 and php4 and php5? What is the current stable version of php? What advance thing in php7?
How to add 301 redirects in PHP?
What is meant by session in php?
what is the difference between GET,POST and REQUEST in php
Is c similar to php?
What are different types of runtime errors in php?
Questions on OOP concepts 1. What are the access specifiers available in php ? Explain 2. What is object cloning ? 3. What are the differences between interface and abstract class ? 4. What is overloading ? 5. What is overriding ? 6. How to prevent function overriding ? 7. What is the use of "final" keyword ? 8. What is static variable ? How will access a static variable ? What is static class ?