Ds \ Set::first()函數是PHP中的內置函數,它返回Set的第一個元素。
用法:
void public Ds\Set::first( void )
參數:該函數不接受任何參數。
返回值:此函數返回Set的第一個值。
以下示例程序旨在說明PHP中的Ds \ Set::first()函數:
程序1::
<?php
// PHP program to illustarte the
// first() function
// Create a set instance
$set = new \Ds\Set();
// Adding elements to Set
$set->add("Welcome");
$set->add("to");
$set->add("GfG");
// Print the first element from set
print_r($set->first());
?>
輸出:
Welcome
程序2::
<?php
// PHP program to illustarte the
// first() function
// Create a set instance
$set = new \Ds\Set();
// Adding elements to Set
$set->add("10");
$set->add("20");
$set->add("30");
// Print the first element from set
print_r($set->first());
?>
輸出:
10
參考: http://php.net/manual/en/ds-set.first.php
相關用法
- PHP exp()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js cos()用法及代碼示例
- p5.js sin()用法及代碼示例
- d3.js d3.mean()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP Ds\Map map()用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP ord()用法及代碼示例
- p5.js pow()用法及代碼示例
- p5.js day()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Set first() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。