当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Set isEmpty()用法及代码示例


PHP中Ds \ Set类的Ds \ Set::isEmpty()函数是一个内置函数,用于检查集合是否为空。如果Set实例为空,则此函数返回true,否则返回False。

用法:

bool public Ds\Set::isEmpty ( void )  

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


返回值:此函数返回布尔值,具体取决于Set是否为空。如果Set实例为空,则此函数返回true,否则返回False。

以下示例程序旨在说明Ds \ Set::isEmpty()函数:

程序1:

<?php  
  
// Declare new Set 
$set = new \Ds\Set();  
  
// Display the Set element  
var_dump($set);  
  
// Check if set is empty 
if($set->isEmpty()) 
    echo "Set is Empty"; 
  
?> 
输出:
object(Ds\Set)#1 (0) {
}
Set is Empty

程序2:

<?php  
  
// Declare new Set 
$set = new \Ds\Set(["Geeks", "for", "Keegs"]);  
  
// Display the Set element  
var_dump($set);  
  
// Check if Set is Empty 
if($set->isEmpty()==0) 
    echo "Set is Not Empty"; 
  
?> 
输出:
object(Ds\Set)#1 (3) {
  [0]=>
  string(5) "Geeks"
  [1]=>
  string(3) "for"
  [2]=>
  string(5) "Keegs"
}
Set is Not Empty

参考: http://php.net/manual/en/ds-set.isempty.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Set isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。