2011-05-02 06:33:05 +02:00
|
|
|
<?php
|
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
class MultipleArrayIterator implements Iterator
|
|
|
|
{
|
|
|
|
protected $arrays;
|
|
|
|
protected $active;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
$this->arrays = array();
|
|
|
|
foreach ($args as $arg) {
|
|
|
|
if (is_array($arg) && count($arg)) {
|
|
|
|
$this->arrays[] = $arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->rewind();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rewind()
|
|
|
|
{
|
|
|
|
$this->active = $this->arrays;
|
|
|
|
if ($this->active) {
|
|
|
|
reset($this->active[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function current()
|
|
|
|
{
|
|
|
|
return $this->active ? current($this->active[0]) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function key()
|
|
|
|
{
|
|
|
|
return $this->active ? key($this->active[0]) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function next()
|
|
|
|
{
|
|
|
|
if (!$this->active) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (next($this->active[0]) === false) {
|
|
|
|
array_shift($this->active);
|
|
|
|
if ($this->active) {
|
|
|
|
reset($this->active[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function valid()
|
|
|
|
{
|
|
|
|
return $this->active && (current($this->active[0]) !== false);
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|