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


PHP Ds\Collection isEmpty()用法及代碼示例


Ds \ Collection::isEmpty()函數是PHP中的內置函數,用於返回collection是否為空。

用法:

Ds\Collection::isEmpty ( void ):bool

參數:該函數不接受任何參數。


返回值:如果collection為空,則返回True,否則返回False。

以下示例程序旨在說明PHP中的Ds \ Collection::isEmpty()函數:

範例1:

<?php 
  
// Create a collection 
$collection = new \Ds\Vector([10, 15, 21, 13, 16, 18]); 
  
// Use isEmpty function 
$res = $collection->isEmpty(); 
  
// Display the result 
var_dump($res); 
  
// Create a collection 
$collection = new \Ds\Vector(); 
  
// Use isEmpty function 
$res = $collection->isEmpty(); 
  
// Display the result 
var_dump($res); 
?>

輸出:

bool(false) 
bool(true) 

範例2:

<?php 
  
// Create a collection 
$collection = new \Ds\Vector(); 
  
// display output 
var_dump($collection->isEmpty()); 
  
// Create a collection 
$collection = new \Ds\Vector([1, 3, 5, 2, 6]); 
  
// Display output 
var_dump($collection->isEmpty()); 
  
?>

輸出:

bool(true) 
bool(false) 

參考: http://php.net/manual/en/ds-collection.isempty.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Ds\Collection isEmpty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。