0

この配列があるとしましょう:

$cars = array("Saab","Volvo","BMW","Toyota");

また、その配列を「操作」するためのこの Foreach ループもあります。

foreach ($cars as $carsdata) 
    { 
        if (*this is array[0]) {
            do something here
        }else if (*array[1] ... array[x]){
            do another thing here
        }        
    }

そのForeachを正しく書く方法はありますか? ありがとう。

4

6 に答える 6

8

次のような単純なブール値を含めることができます。

$firstRow=true;
foreach ($cars as $carsdata) 
{ 
    if ($firstRow) 
    {
        $firstRow=false;
        // do something here
    }
    else
    {
        // do another thing here
    }        
}
于 2012-09-26T11:52:45.667 に答える
7

あなたの場合、あなたの配列は数字でインデックス付けされているので、実際にはこれを行うことができます:

foreach ($cars as $index => $carsdata) 
{ 
    if ($index == 0) { // array[0]
        do something here
    } else { // *array[1] ... array[x]
        do another thing here
    }        
}
于 2012-09-26T11:54:13.087 に答える
5

問題の入力のように配列 $cars にインデックスを付けた場合、これは機能します。

foreach ($cars as $i => $carsdata) {
    if (!$i) {
        // do something with first
    } else {
        // do something with second+
    }
}
于 2012-09-26T11:53:21.087 に答える
2

これは機能しますか?

foreach ($cars as $key => $carsdata) {
     if ($key == 0) {
        //do
    } else {
        //do
    }
}
于 2012-09-26T11:55:42.413 に答える
1

別の可能性

$i = 0;
$len = count($carsdata);
foreach ($cars as $carsdata) 
{ 
    if ( $i == 0 ) {
        // first element
        // do something here
    }else if ($i == $len - 1){
        // last element
        // do another thing here
    } else {
        // do the rest here
    } 
    $i++;     
}
于 2012-09-26T11:57:39.123 に答える
0
foreach ($cars as $carsdata=>value) 
{ 
    if($value==0){
        // Do the things for the o th index 
    }
    else{


    }
}
于 2012-09-26T12:03:52.287 に答える