IXR_Date::__construct
PHP5 constructor.
Метод класса: IXR_Date{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$IXR_Date = new IXR_Date(); $IXR_Date->__construct( $time );
- $time(обязательный)
- .
Код IXR_Date::__construct() IXR Date:: construct WP 6.9.4
function __construct( $time )
{
// $time can be a PHP timestamp or an ISO one
if (is_numeric($time)) {
$this->parseTimestamp($time);
} else {
$this->parseIso($time);
}
}