PHP current() 函数


实例

输出数组中的当前元素的值:

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

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

定义和用法

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

每个数组中都有一个内部的指针指向它的"当前"元素,初始指向插入到数组中的第一个元素。

提示:该函数不会移动数组内部指针。

相关的方法:

  • end() - 将内部指针指向数组中的最后一个元素,并输出。
  • next() - 将内部指针指向数组中的下一个元素,并输出。
  • prev() - 将内部指针指向数组中的上一个元素,并输出。
  • reset() - 将内部指针指向数组中的第一个元素,并输出。
  • each() - 返回当前元素的键名和键值,并将内部指针向前移动。

语法

  1. current(array)


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

技术细节

返回值:返回数组中的当前元素的值,如果当前元素为空或者当前元素没有值则返回 FALSE。
PHP 版本:4+

更多实例

实例 1

所有相关方法的演示:

  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
    ?>
运行一下 »