【函数功能】
该函数将内部指针指向数组中的第一个元素,并返回其值。
【函数语法】
reset (array &$array)
【参数说明】
$array:必需,要使用的数组。
【演示程序】
<?php
/**
* reset (array &$array)
* **/
$array = array('site_name'=>'PHP1234','site_url'=>'php1234.cn','site_auth'=>'明礼馨德');
echo (current($array));
echo '<br>';
echo (next($array));
echo '<br>';
echo (reset($array));
?>
【输出结果】
PHP1234
php1234.cn
PHP1234
【特别注意】
1.如果数组为空则返回false。
2.PHP 版本:4+。
【原版定义】
/**
* Set the internal pointer of an array to its first element
* @link http://www.php.net/manual/en/function.reset.php
* @param array array <p>
* The input array.
* </p>
* @return mixed the value of the first array element, or false if the array is
* empty.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2017/0420/217.html