PHP中的Ds \ Map::isEmpty()函數用於檢查給定的Map是否為空。如果Map不包含任何鍵/值對,則為空。
用法:
Ds\Map public Ds\Map::isEmpty ( void )
參數:它不接受任何參數。
返回值:此函數根據Map對象是否為Empty返回布爾值True或False。
以下示例程序旨在說明PHP中的Ds \ Map::isEmpty()函數:
程序1:
<?php
// PHP program to illustrate the isEmpty()
// function of Ds\map
// Creating a Map
$map = new \Ds\Map(["1" => "Geeks",
"2" => "for", "3" => "Geeks"]);
// Check if the Map is empty or not
var_dump($map->isEmpty());
?>
輸出:
bool(false)
程序2:
<?php
// PHP program to illustrate the isEmpty()
// function of Ds\map
// Creating a Map
$map = new \Ds\Map();
// Check if the Map is empty or not
var_dump($map->isEmpty());
?>
輸出:
bool(true)
參考:http://php.net/manual/en/ds-map.isempty.php
相關用法
- PHP Ds\Set isEmpty()用法及代碼示例
- PHP Ds\Vector isEmpty()用法及代碼示例
- PHP Ds\Collection isEmpty()用法及代碼示例
- PHP Ds\PriorityQueue isEmpty()用法及代碼示例
- PHP Ds\Deque isEmpty()用法及代碼示例
- PHP Ds\Stack isEmpty()用法及代碼示例
- PHP Ds\Queue isEmpty()用法及代碼示例
- PHP SplDoublyLinkedList isEmpty()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP max( )用法及代碼示例
- PHP key()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
- PHP end()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Map isEmpty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。