Heim > Artikel > Backend-Entwicklung > PHP 数组函数current和next用法分享
本文这里通过示例给大家简单对比分析了PHP 数组current和next的用法,虽然示例很简单,但是对于我们理解current和next非常有帮助,这里推荐给大家。
1.current
<?php $transport = array('foot', 'bike', 'car', 'plane'); $mode = current($transport); //$mode = 'foot'; $mode = next($transport); // $mode ='bike'; $mode = current($transport); //$mode = 'bike'; $mode = prev($transport); // $mode ='foot'; $mode = end($transport); // $mode ='plane'; $mode = current($transport); //$mode = 'plane'; ?>
2.next
a8697d447d72e01f079d4485d53affce
示例很简单,但是却很实用,希望小伙伴们能够喜欢。
以上就介绍了PHP 数组current和next用法分享,包括了current,next方面的内容,希望对PHP教程有兴趣的朋友有所帮助。