Date::__construct PHP Méthode

__construct() public méthode

public __construct ( $year = null, $month = null, $day = null )
        public function __construct($year = null, $month = null, $day = null)
        {
            $this->year = $year;
            $this->month = $month;
            $this->day = $day;
        }

Usage Example

 public function __construct($dateTime, DateTimeZone $zone = null)
 {
     parent::__construct($dateTime);
     if ($zone) {
         $this->dateTime->setTimezone($zone);
     }
 }
All Usage Examples Of Date::__construct