wppaste
WordPress

IXR_Date

Since
1.5.0
Source
wp-includes/IXR/class-IXR-date.php:9
IXR_Date

Compatibility

WordPress
since 1.5.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Properties · 7

$yearpublic
$monthpublic
$daypublic
$hourpublic
$minutepublic
$secondpublic
$timezonepublic

Methods · 7

Source code

class IXR_Date {    var $year;    var $month;    var $day;    var $hour;    var $minute;    var $second;    var $timezone; 	/**	 * PHP5 constructor.	 */    function __construct( $time )    {        // $time can be a PHP timestamp or an ISO one        if (is_numeric($time)) {            $this->parseTimestamp($time);        } else {            $this->parseIso($time);        }    } 	/**	 * PHP4 constructor.	 */	public function IXR_Date( $time ) {		self::__construct( $time );	}     function parseTimestamp($timestamp)    {        $this->year = gmdate('Y', $timestamp);        $this->month = gmdate('m', $timestamp);        $this->day = gmdate('d', $timestamp);        $this->hour = gmdate('H', $timestamp);        $this->minute = gmdate('i', $timestamp);        $this->second = gmdate('s', $timestamp);        $this->timezone = '';    }     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);        $this->timezone = substr($iso, 17);    }     function getIso()    {        return $this->year.$this->month.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->second.$this->timezone;    }     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);    }}

Changelog

Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, from src/wp-includes/IXR/class-IXR-date.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.