68 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * ManiaPlanet dedicated server Xml-RPC client
 | 
						|
 *
 | 
						|
 * @license     http://www.gnu.org/licenses/lgpl.html LGPL License 3
 | 
						|
 */
 | 
						|
 | 
						|
namespace Maniaplanet\DedicatedServer\Xmlrpc;
 | 
						|
 | 
						|
class Date 
 | 
						|
{
 | 
						|
	public $year;
 | 
						|
	public $month;
 | 
						|
	public $day;
 | 
						|
	public $hour;
 | 
						|
	public $minute;
 | 
						|
	public $second;
 | 
						|
 | 
						|
	function __construct($time) 
 | 
						|
	{
 | 
						|
		// $time can be a PHP timestamp or an ISO one
 | 
						|
		if (is_numeric($time)) 
 | 
						|
		{
 | 
						|
			$this->parseTimestamp($time);
 | 
						|
		} 
 | 
						|
		else 
 | 
						|
		{
 | 
						|
			$this->parseIso($time);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	function parseTimestamp($timestamp) 
 | 
						|
	{
 | 
						|
		$this->year = date('Y', $timestamp);
 | 
						|
		$this->month = date('m', $timestamp);
 | 
						|
		$this->day = date('d', $timestamp);
 | 
						|
		$this->hour = date('H', $timestamp);
 | 
						|
		$this->minute = date('i', $timestamp);
 | 
						|
		$this->second = date('s', $timestamp);
 | 
						|
	}
 | 
						|
 | 
						|
	function parseIso($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);
 | 
						|
	}
 | 
						|
 | 
						|
	function getIso() 
 | 
						|
	{
 | 
						|
		return $this->year.$this->month.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->second;
 | 
						|
	}
 | 
						|
 | 
						|
	function getXml() 
 | 
						|
	{
 | 
						|
		return '<dateTime.iso8601>'.$this->getIso().'</dateTime.iso8601>';
 | 
						|
	}
 | 
						|
 | 
						|
	function getTimestamp() 
 | 
						|
	{
 | 
						|
		return mktime($this->hour, $this->minute, $this->second, $this->month, $this->day, $this->year);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
?>
 |