この配列を考えてみましょう:モジュラスのevalの最初の発生を取得
$numbers = [2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17];
どのようにループこの配列を通って、最初の番号と以下のevalが真である最後の番号を得ることができますか?
foreach($numbers as $number){
if(($number % 2)==0){
//This will execute for the numbers 2,4,6, etc...
//The first occurrence here will be 2 and the last will be 16
}
}
シェリフの答えは優れているトリックを行う必要があります。 –