Ds\Set::isEmpty() 函数可以返回集合是否为空。
用法
public bool Ds\Set::isEmpty( void )
Ds\Set::isEmpty() 函数没有任何参数。
如果集合为空,则 Ds\Set::isEmpty() 函数可以返回 true,否则返回 false。
例子1
<?php
$set = new \Ds\Set();
var_dump($set);
if($set->isEmpty())
echo "The set is empty";
?>
例子2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
var_dump($set);
if($set->isEmpty()==0)
echo "The set is not empty";
?>
相关用法
- PHP Ds Set intersect()用法及代码示例
- PHP Ds Set count()用法及代码示例
- PHP Ds Set remove()用法及代码示例
- PHP Ds Set toArray()用法及代码示例
- PHP Ds Set slice()用法及代码示例
- PHP Ds Set sort()用法及代码示例
- PHP Ds Set merge()用法及代码示例
- PHP Ds Set reduce()用法及代码示例
- PHP Ds Set reversed()用法及代码示例
- PHP Ds Set contains()用法及代码示例
- PHP Ds Set filter()用法及代码示例
- PHP Ds Set add()用法及代码示例
- PHP Ds Set join()用法及代码示例
- PHP Ds Set get()用法及代码示例
- PHP Ds Set reverse()用法及代码示例
- PHP Ds Set capacity()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Set isEmpty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。