IXR_Date::__construct

Advertisement

Summery Summery

PHP5 constructor.

Syntax Syntax

IXR_Date::__construct( $time )

Source Source

File: wp-includes/IXR/class-IXR-date.php

    function __construct( $time )
    {
        // $time can be a PHP timestamp or an ISO one
        if (is_numeric($time)) {
            $this->parseTimestamp($time);
        } else {
            $this->parseIso($time);
        }
    }

Advertisement

Advertisement

Leave a Reply