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