* remove all magic methods, add type for class properties * refactor codes * fix all * refactor code * fix type * fix all * fix request is method * fix all * fix router * fix get page
87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace IXR;
|
|
|
|
/**
|
|
* IXR日期
|
|
*
|
|
* @package IXR
|
|
*/
|
|
class Date
|
|
{
|
|
private int $year;
|
|
|
|
private int $month;
|
|
|
|
private int $day;
|
|
|
|
private int $hour;
|
|
|
|
private int $minute;
|
|
|
|
private int $second;
|
|
|
|
/**
|
|
* @param int|string $time
|
|
*/
|
|
public function __construct($time)
|
|
{
|
|
// $time can be a PHP timestamp or an ISO one
|
|
if (is_numeric($time)) {
|
|
$this->parseTimestamp(intval($time));
|
|
} else {
|
|
$this->parseIso($time);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param int $timestamp
|
|
*/
|
|
private function parseTimestamp(int $timestamp)
|
|
{
|
|
$this->year = intval(date('Y', $timestamp));
|
|
$this->month = intval(date('m', $timestamp));
|
|
$this->day = intval(date('d', $timestamp));
|
|
$this->hour = intval(date('H', $timestamp));
|
|
$this->minute = intval(date('i', $timestamp));
|
|
$this->second = intval(date('s', $timestamp));
|
|
}
|
|
|
|
/**
|
|
* @param string $iso
|
|
*/
|
|
private function parseIso(string $iso)
|
|
{
|
|
$this->year = substr($iso, 0, 4);
|
|
$this->month = substr($iso, 4, 2);
|
|
$this->day = substr($iso, 6, 2);
|
|
$this->hour = substr($iso, 9, 2);
|
|
$this->minute = substr($iso, 12, 2);
|
|
$this->second = substr($iso, 15, 2);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getIso(): string
|
|
{
|
|
return $this->year . $this->month . $this->day . 'T' . $this->hour . ':' . $this->minute . ':' . $this->second;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getXml(): string
|
|
{
|
|
return '<dateTime.iso8601>' . $this->getIso() . '</dateTime.iso8601>';
|
|
}
|
|
|
|
/**
|
|
* @return false|int
|
|
*/
|
|
public function getTimestamp()
|
|
{
|
|
return mktime($this->hour, $this->minute, $this->second, $this->month, $this->day, $this->year);
|
|
}
|
|
}
|