foreach()每4个变化输出

时间:2014-03-05 13:50:57

标签: php foreach

我遇到一个问题,我不知道foreach()循环是否会改变每(x)个结果的输出。

这是我的foreach()代码:

$dir_handle = 'assets/icons/';
    foreach(array_diff(scandir($dir_handle), array('.', '..')) as $file) {
        $cut = substr($file, -4);
        echo '<a href="action.php?do=changeicon&set=' . $cut . '"><img id="preload_header" src="assets/icons/' . $file . '" /></a><br />';
}

我如何获得1-4的结果相同,但是5-8有不同的结果,然后回到1-4?

2 个答案:

答案 0 :(得分:1)

您希望在foreach循环中进行计数

$count = 1;
foreach(array_diff(scandir($dir_handle), array('.', '..')) as $file) {
    //Check if count is between 1 and 4
    if($count >= 1 && $count <= 4) {

        //Do something

    } else { //Otherwise it must be between 5 and 8

        //Do something else

        //If we are at 8 go back to one otherwise just increase the count by 1
        if($count == 8) {
            $count = 1;
        } else {
            $count++;
        }
    }
}

答案 1 :(得分:0)

您可以使用%运算符,并结合4分组:

foreach ($a as $key => $val) {
    $phase = $key / 4 % 2;
    if ($phase === 0) {
        echo 'here';
    }
    elseif ($phase === 1) {
        echo 'there';
    }
}

这会在循环的每4次迭代中在两个分支之间切换。

正如评论中所指出的,上述方法假设您的数组的键是有序的。如果没有,您可以在循环中添加计数器变量,如:

$c = 0;
foreach ($a as $val) {
    $phase = $c++ / 4 % 2;
    if ($phase === 0) {
        echo 'here';
    }
    elseif ($phase === 1) {
        echo 'there';
    }
}