Let’s say I’ve a code:
foreach($array as $key => $value)
{
//do something
if($var === true) //"reverse"
}
is it possible to “reverse” foreach, so it’ll “run” with the same array’s element it was “running” when called to “get back” ;)?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to use a normal
forloop and make the last parameter (the modifying part) depend on a variable.Expr3 in the following manual entry: http://php.net/manual/en/control-structures.for.php