PHPDaemon\Utils\DateTime::__construct PHP Метод

__construct() публичный Метод

Support timestamp and available date format
public __construct ( string $time = 'now', DateTimeZone $timezone = null )
$time string
$timezone DateTimeZone
    public function __construct($time = 'now', \DateTimeZone $timezone = null)
    {
        if (is_int($time)) {
            parent::__construct('now', $timezone);
            $this->setTimestamp($time);
        } else {
            parent::__construct($time, $timezone);
        }
    }