PHP5 constructor.
Source
function __construct( $time )
{
// $time can be a PHP timestamp or an ISO one
if (is_numeric($time)) {
$this->parseTimestamp($time);
} else {
$this->parseIso($time);
}
}
CARVIEW |
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);
}
}
Uses | Description |
---|---|
IXR_Date::parseIso()wp-includes/IXR/class-IXR-date.php | |
IXR_Date::parseTimestamp()wp-includes/IXR/class-IXR-date.php |
Used by | Description |
---|---|
IXR_IntrospectionServer::methodSignature()wp-includes/IXR/class-IXR-introspectionserver.php | |
IXR_Message::tag_close()wp-includes/IXR/class-IXR-message.php | |
IXR_Date::IXR_Date()wp-includes/IXR/class-IXR-date.php | PHP4 constructor. |
wp_xmlrpc_server::_convert_date()wp-includes/class-wp-xmlrpc-server.php | Converts a WordPress date string to an IXR_Date object. |
wp_xmlrpc_server::_convert_date_gmt()wp-includes/class-wp-xmlrpc-server.php | Converts a WordPress GMT date string to an IXR_Date object. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.