简体   繁体   中英

PHP: foreach - reverse 1 iteration

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" ;)?

You will have to use a normal for loop 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

Not with a foreach , no. You could do this:

$array = range(1,10);

for (
    $dir = 1, reset($array); 
    $val = current($array); // for keys, use list($key,$val) = each($array)
    $dir == 1 ? next($array) : prev($array)
) {
    echo "{$val}\n";
    if ($val == 7) {
        $dir = -1;
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM