IXR_Date::__construct( $time )
PHP5 constructor.
Contents
Source
File: wp-includes/IXR/class-IXR-date.php
.
View all references
function __construct( $time )
{
// $time can be a PHP timestamp or an ISO one
if (is_numeric($time)) {
$this->parseTimestamp($time);
} else {
$this->parseIso($time);
}
}