How PHP avoids 1970 time stamp failure

Source: Internet
Author: User
How PHP handles 1970 before time stamp is invalidated.
Recently involved in the processing of ancient dates, time stamp can not be used AH date mktime less than 1970 will not be

For example, 1885-11-25 and 1901-01-12 dates are bad.

Ask a master to help

------Solution--------------------
PHP Code
Mysql_connect (); $d 1 = ' 1901-01-12 '; $d 2 = ' 1885-11-25 '; $rs = mysql_query ("Select To_days (' $d 1 ')-to_days (' $d 2 ')"); List ( $t) = Mysql_fetch_row ($rs); Echo $t;
------Solution--------------------

PHP Code
Date_default_timezone_set (' Asia/hong_kong '); $datetime 1 = new datetime (' 1885-11-25 '); $datetime 2 = new DateTime (' 1901-01-12 '); $interval = $datetime 1->diff ($datetime 2);p Rint_r ($interval);
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.