本文實例講述了php中current、next與reset函數用法。分享給大家供大家參考。
具體代碼如下:
復制代碼 代碼如下:$array=array('step one','step two','step three','step four'); //定義一個數組
echo current($array)."<br/>n"; //返回數組第一個元素
next($array); //數組指針後移一位
next($array); //數組指針後移一位
echo current($array)."<br/>n"; //返回數組當前元素,第三個值
reset($array); //指針指向數組第一個值
echo current($array)."<br/>n"; //返回數組第一個值
//
$info=array('red','blue','green'); //定義數組
while($result=current($info))
{
echo $result;
echo "<br>";
next($info);
}
//
$array=array(
'fruit1'=>'apple',
'fruit2'=>'orange',
'fruit3'=>'grape',
'fruit4'=>'apple',
'fruit5'=>'apple'); //定義數組
while($fruit_name=current($array)) //循環獲取數組當前值
{
if($fruit_name=='apple') //如果當前值為apple
{
echo key($array).'<br/>'; //輸出當前值的鍵名
}
next($array); //數組指針下移一步
}
希望本文所述對大家的PHP程序設計有所幫助。