次の配列を検討してください。
$a['a'] = 1;
$a['b'] = 2;
$a['c'] = 3;
$a['d'] = 4;
そして、私は配列をループしています
foreach( $a as $q => $x )
{
# Some operations ....
if( isLastElement == false ){
#Want to do some more operation
}
}
現在の位置が であるかどうかを知るにはどうすればよいlast
ですか?
ありがとう。