當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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