PHP | Ds\Set first()函数
Ds\Set::first()函数是PHP中的一个内置函数,它返回 Set 的第一个元素。
句法:
void public Ds\Set::first( void )
参数:此函数不接受任何参数。
返回值:该函数返回Set的第一个值。
下面的程序说明了PHP中的Ds\Set::first()函数:
程序 1 :
PHP
add("Welcome");
$set->add("to");
$set->add("GfG");
// Print the first element from set
print_r($set->first());
?>
PHP
add("10");
$set->add("20");
$set->add("30");
// Print the first element from set
print_r($set->first());
?>
输出:
Welcome
方案二:
PHP
add("10");
$set->add("20");
$set->add("30");
// Print the first element from set
print_r($set->first());
?>
输出:
10
参考: http: PHP。 PHP