php中reset函数,PHP reset()函数
實例 1
所有相關(guān)方法的演示:
$people = array("Peter", "Joe", "Glenn", "Cleveland");
echo current($people) . "
"; // The current element is Peter
echo next($people) . "
"; // The next element of Peter is Joe
echo current($people) . "
"; // Now the current element is Joe
echo prev($people) . "
"; // The previous element of Joe is Peter
echo end($people) . "
"; // The last element is Cleveland
echo prev($people) . "
"; // The previous element of Cleveland is Glenn
echo current($people) . "
"; // Now the current element is Glenn
echo reset($people) . "
"; // Moves the internal pointer to the first element of the array, which is Peter
echo next($people) . "
"; // The next element of Peter is Joe
print_r (each($people)); // Returns the key and value of the current element (now Joe), and moves the internal pointer forward
?>
運行實例
總結(jié)
以上是生活随笔為你收集整理的php中reset函数,PHP reset()函数的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 没有bug队——加贝——Python 5
- 下一篇: 动态规划算法php,php算法学习之动态