この配列があるとしましょう:
$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を正しく書く方法はありますか? ありがとう。