next()函數作用:
php中next()函數的作用是將數組中的內部指針向前移動一位。
next()函數語法:
next(array)
參數:
array:規定要使用的數組。
next()函數使用方法:
例:輸出數組中的當前元素和下一個元素的值<?php$people = array("Bill", "Steve", "Mark", "David");echo current($people) . "<br>";echo next($people);?>
<?php
$people = array("Bill", "Steve", "Mark", "David");
echo current($people) . "<br>";
echo next($people);
?>
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529