📜  PHP | Ds\Sequence first()函数

📅  最后修改于: 2022-05-13 01:56:51.334000             🧑  作者: Mango

PHP | Ds\Sequence first()函数

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

句法:

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

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

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

下面的程序说明了PHP中的Ds\Sequence::first()函数:

示例 1:

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:

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。 PHP