php中next()函数怎么用 php next函数

主机教程 建站分享 2年前 (2022-11-13) 205次浏览

文章摘要:php中next()函数怎么用 php next函数

next()函数作用: php中next()函数的作用是将数组中的内部指针向前移动一位。 next()函数语法 […]

next()函数作用:

php中next()函数的作用是将数组中的内部指针向前移动一位。

next()函数语法:

next(array)

参数:

array:规定要使用的数组。

next()函数使用方法:

例:输出数组中的当前元素和下一个元素的值

<?php

$people = array("Bill", "Steve", "Mark", "David");

echo current($people) . "<br>";

echo next($people);

?>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:php中next()函数怎么用 php next函数
文章链接:http://www.7966.org/post/13008.html
转载请注明出处

喜欢 (0)