PHP 中的 end() 函数

phpprogrammingserver side programming

end() 函数将数组的内部指针设置为其最后一个元素

语法

end(arr)

参数

  • arr − 指定的数组

返回

如果成功,end() 函数将返回数组中最后一个元素的值。如果数组为空,则返回 FALSE。

示例

下面是一个例子 −

<?php
$os = array('windows', 'mac', 'linux', 'solaris');
echo end($os);
?>

输出

以下是输出 −

solaris

示例

让我们看另一个例子 −

<?php
$a = array('one', 'two', 'three', 'four', 'five', 'six' );
echo current($a)."
"; echo next($a)."
"; echo current($a)."
"; echo end($a)."
"; echo current($a)."
"; ?>

输出

以下是输出 −

one
two
two
six
six

相关文章