📜  PHP | Ds\Set last()函数

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

PHP | Ds\Set last()函数

Ds\Set::last()函数是PHP中的一个内置函数,用于从 Set 实例返回最后一个元素。

句法:

void public Ds\Set::last( void ) 

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

返回值:此函数返回 Set 的最后一个值。

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

方案一:

PHP
add("Welcome");
$set->add("to");
$set->add("GfG");
 
// Print the last element from set
print_r($set->last());
 
?>


PHP
add("10");
$set->add("20");
$set->add("30");
 
// Print the last element from set
print_r($set->last());
 
?>


输出:
GfG

方案二:

PHP

add("10");
$set->add("20");
$set->add("30");
 
// Print the last element from set
print_r($set->last());
 
?>
输出:
30

参考: http: PHP。 PHP