SplStack クラス
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
はじめに
SplStack クラスは、スタックの主要な機能を提供します。
双方向リンクリストのイテレータのモードを
SplDoublyLinkedList::IT_MODE_LIFO
に設定することで実装しています。
クラス概要
/* 継承した定数 */
/* 継承したメソッド */
}例
例1 SplStack の例
<?php
$q = new SplStack();
$q[] = 1;
$q[] = 2;
$q[] = 3;
foreach ($q as $elem) {
echo $elem."\n";
}
?>
上の例の出力は以下となります。
3 2 1
+add a note
User Contributed Notes 2 notes
lsroudi at gmail dot com ¶
10 years ago
the SplStack is simply a SplDoublyLinkedList with an iteration mode IT_MODE_LIFO and IT_MODE_KEEP
lincoln dot du dot j at gmail dot com ¶
7 years ago
<?php
//SplStack Mode is LIFO (Last In First Out)
$q = new SplStack();
$q[] = 1;
$q[] = 2;
$q[] = 3;
$q->push(4);
$q->add(4,5);
$q->rewind();
while($q->valid()){
echo $q->current(),"\n";
$q->next();
}
?>
Output
5
4
3
2
1
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google