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
相关用法
- PHP Ds\Set isEmpty()用法及代码示例
- PHP Ds\Map isEmpty()用法及代码示例
- PHP Ds\PriorityQueue isEmpty()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP Ds\Stack isEmpty()用法及代码示例
- PHP Ds\Vector isEmpty()用法及代码示例
- PHP Ds\Deque isEmpty()用法及代码示例
- PHP SplDoublyLinkedList isEmpty()用法及代码示例
- Underscore.js _.isEmpty()用法及代码示例
- PHP end()用法及代码示例
- d3.js d3.mean()用法及代码示例
- PHP exp()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Ds\Collection isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。