📜  PHP | Ds\Collection isEmpty()函数

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

PHP | Ds\Collection isEmpty()函数

Ds\Collection::isEmpty()函数是PHP中的一个内置函数,用于返回集合是否为空。

句法:

Ds\Collection::isEmpty ( void ) : bool

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

返回值:如果集合为空,则返回 True,否则返回 False。

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

示例 1:

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:

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。 PHP