Stack.php
1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
namespace Easy\Collections;
use RuntimeException;
use SplStack;
/**
* Represents a simple last-in-first-out (LIFO) non-generic collection of objects.
*/
class Stack extends SplStack implements StackInterface
{
/**
* Inserts multiples objects at the top of the Stack.
* @param type $items The Objects to push onto the Stack. The value <b>can</b> be null.
*/
public function pushMultiple($items)
{
foreach ($items as $item) {
$this->push($item);
}
return $this;
}
/**
* Returns the object at the top of the Stack without removing it.
* @return mixed The Object at the top of the Stack.
* @throws RuntimeException
*/
public function peek()
{
if ($this->isEmpty()) {
throw new RuntimeException(_('Cannot use method Peek on an empty Stack'));
}
return $this->offsetGet(0);
}
public static function fromArray(array $arr)
{
$collection = new Stack();
foreach ($arr as $v) {
if (is_array($v)) {
$collection->push(static::fromArray($v));
} else {
$collection->push($v);
}
}
return $collection;
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$array = array();
foreach ($this as $key => $value) {
if ($value instanceof CollectionInterface) {
$array[$key] = $value->toArray();
} else {
$array[$key] = $value;
}
}
return $array;
}
/**
* {@inheritdoc}
*/
public function __toString()
{
return get_class($this);
}
}