你可以计算出数组长度,然后再跟当前循环次数比较
$arr = array('1','2','3','4','5',);
$count = count($arr);
for($i=1;$i<=$count;$i++){
if($i==$count){
echo "这是数组的最后一次循环";
}
}
先计算数组的维数判断就好了,
count($array)
array_pop — Pop the element off
the end of array
$array = array('a','b','c','d');
$count = count($array);
foreach($array as $key => $val){
if($key+1 == $count){
echo '最后一次';
}
}
用end函数