当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Sequence first()用法及代码示例


Ds \ Sequence::first()函数是PHP中的一个内置函数,用于返回序列中的第一个元素。

用法:

mixed abstract public Ds\Sequence::first ( void )

参数:该函数不接受任何参数。


返回值:此函数返回序列中的第一个元素。

以下示例程序旨在说明PHP中的Ds \ Sequence::first()函数:

范例1:

<?php 
  
// Create new sequence 
$seq =  new \Ds\Vector([10, 20, 13, 25]); 
  
// Display the first element from the sequence 
var_dump($seq->first()); 
  
// Create new sequence 
$seq =  new \Ds\Vector(['G', 'e', 'e', 'k', 's']); 
  
// Display the first element from the sequence 
var_dump($seq->first()); 
  
?>

输出:

int(10)
string(1) "G"

范例2:

<?php 
  
// Create new sequence 
$seq =  new \Ds\Vector([21, 23, 'p', 'x']); 
  
// Display the first element 
// from the sequence 
var_dump($seq->first()); 
  
// Function to push an element 
$seq->insert(0, "G");    
  
// Display the first element 
// from the sequence 
var_dump($seq->first()); 
  
?>

输出:

int(21)
string(1) "G"

参考: http://php.net/manual/en/ds-sequence.first.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Ds\Sequence first() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。