SplDoublyLinkedList::isEmpty
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SplDoublyLinkedList::isEmpty — 双方向リンクリストが空かどうかを調べる
説明
パラメータ
この関数にはパラメータはありません。
戻り値
双方向リンクリストが空かどうかを返します。
+add a note
User Contributed Notes 1 note
lincoln dot du dot j at gmail dot com ¶
7 years ago
//isEmpty is a method of SplDoublyLinkedList
$obj = new SplDoublyLinkedList();
// Check wither linked list is empty
if ($obj->isEmpty())
{
$obj->push(2);
$obj->unshift(10);
}
print_r($obj);
//Output like this
SplDoublyLinkedList Object
(
[flags:SplDoublyLinkedList:private] => 0
[dllist:SplDoublyLinkedList:private] => Array
(
[0] => 10
[1] => 2
)
)
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google