Ds \ Sequence::last()函数是PHP中的一个内置函数,用于返回序列中的最后一个元素。
用法:
mixed abstract public Ds\Sequence::last( void )
参数:该函数不接受任何参数。
返回值:此函数返回序列中的最后一个元素。
以下示例程序旨在说明PHP中的Ds \ Sequence::last()函数:
程序1:
<?php
// Create new sequence
$seq = new \Ds\Vector([10, 20, 13, 25]);
// Display the last element from the sequence
var_dump($seq->last());
// Create new sequence
$seq = new \Ds\Vector(['G', 'e', 'e', 'k', 's']);
// Display the last element from the sequence
var_dump($seq->last());
?>
输出:
int(25) string(1) "s"
程序2:
<?php
// Create new sequence
$seq = new \Ds\Vector([21, 23, "p", "x"]);
// Display the last element
// from the sequence
var_dump($seq->last());
// Function to push an element
$seq->insert(4, "G");
// Display the last element
// from the sequence
var_dump($seq->last());
?>
输出:
string(1) "x" string(1) "G"
参考: http://php.net/manual/en/ds-sequence.last.php
相关用法
- PHP exp()用法及代码示例
- d3.js d3.lab()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Ds\Sequence last() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。