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
相關用法
- 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 first() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。