A fast and light-weight component library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
757 B

7 years ago
<?php
namespace Twister;
use \DateTime; // http://php.net/manual/en/class.datetime.php
use IteratorAggregate; // http://php.net/manual/en/class.iteratoraggregate.php Interface to create an external Iterator.
7 years ago
class DatePeriod extends DatePeriod implements IteratorAggregate
7 years ago
{
public function __construct($date)
{
}
public function __construct()
{
$this->position = 0;
}
public function rewind()
{
$this->position = 0;
}
public function current()
{
return $this->array[$this->position];
}
public function key()
{
return $this->position;
}
public function next()
{
++$this->position;
}
public function valid()
{
return isset($this->array[$this->position]);
}
}