最新的Web开发教程
 

PHP current() Function

<PHP阵列参考

输出阵列中的当前元素的值:

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>";
?>
运行示例»

定义和用法

current()函数返回在数组的当前元素的值。

每个阵列具有一个内部指针到它的"current"元件,其被初始化为插入到所述阵列的第一个元素。

Tip:该函数不会移动阵列内部指针。

相关方法:

  • end() -内部指针移动到,并输出最后的元件阵列中的
  • next() -内部指针阵列中移动到,并输出下一个元素
  • prev() -内部指针移动到,并输出先前的元件阵列中的
  • reset() -内部指针移动到所述阵列的所述第一元件
  • each() -返回当前元素的键和值,和所述内部指针向前移动

句法

current( array )

参数 描述
array 需要。 指定要使用的数组

技术细节

返回值: 返回当前元素的值在一个阵列,或FALSE的空元素或元素没有值
PHP版本: 4+

更多示例

实施例1

所有相关的方法的演示:

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>"; // The current element is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe
echo current($people) . "<br>"; // Now the current element is Joe
echo prev($people) . "<br>"; // The previous element of Joe is Peter
echo end($people) . "<br>"; // The last element is Cleveland
echo prev($people) . "<br>"; // The previous element of Cleveland is Glenn
echo current($people) . "<br>"; // Now the current element is Glenn
echo reset($people) . "<br>"; // Moves the internal pointer to the first element of the array, which is Peter
echo next($people) . "<br>"; // 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
?>
运行示例»

<PHP阵列参考