Iterator.php
1.4 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
78
79
80
81
82
83
84
85
86
87
<?php
namespace PhpOffice\PhpSpreadsheet\Worksheet;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
class Iterator implements \Iterator
{
/**
* Spreadsheet to iterate.
*
* @var Spreadsheet
*/
private $subject;
/**
* Current iterator position.
*
* @var int
*/
private $position = 0;
/**
* Create a new worksheet iterator.
*
* @param Spreadsheet $subject
*/
public function __construct(Spreadsheet $subject)
{
// Set subject
$this->subject = $subject;
}
/**
* Destructor.
*/
public function __destruct()
{
unset($this->subject);
}
/**
* Rewind iterator.
*/
public function rewind()
{
$this->position = 0;
}
/**
* Current Worksheet.
*
* @return Worksheet
*/
public function current()
{
return $this->subject->getSheet($this->position);
}
/**
* Current key.
*
* @return int
*/
public function key()
{
return $this->position;
}
/**
* Next value.
*/
public function next()
{
++$this->position;
}
/**
* Are there more Worksheet instances available?
*
* @return bool
*/
public function valid()
{
return $this->position < $this->subject->getSheetCount() && $this->position >= 0;
}
}