Java Timestamp and PHP timestamp conversion php time ()

Source: Internet
Author: User
Tags echo date
Conversion of Java timestamp and PHP timestamp php time ()

Summarize the Java timestamp and PHP timestamp conversion problem: Due to different precision, resulting in inconsistent length, direct conversion error.
Java timestamp length is 13 bits, such as: 1294890876859 php timestamp length is 10 bits, such as: 1294890859
The main last three bits are different, the Java timestamp is used in PHP, minus the latter three bits, such as:1294890876859-> 1294890876 results: 2011-01-13 11:54:36

    1. echo Date (' y-m-d h:i:s ', ' 1294890876 ');

PHP timestamp used in Java, last add three bit, with 000 supplement, such as: 1294890859->1294890859000
Result: 2011-01-13 11:54:19

    1. SimpleDateFormat df = new SimpleDateFormat ("Yyyy-mm-dd HH:mm:ss");
    2. String dateTime = Df.format (1294890859000L);???????????????
    3. SYSTEM.OUT.PRINTLN (DF);

Summarize the Java timestamp and PHP timestamp conversion issues:
Due to the different accuracy, the length is inconsistent and the direct conversion error is caused. Java timestamp length is 13 bits, such as: 1294890876859 php timestamp length is 10 bits, such as: 1294890859
The main last three bits differ, the Java timestamp is used in PHP, minus the latter three bits, such as:1294890876859-> 1294890876 results: 2011-01-13 11:54:36 echo Date (' y-m-d h:i:s ', ' 1294890876 '); PHP timestamp used in Java, last add three bit, with 000 supplement, such as: 1294890859->1294890859000
Result: 2011-01-13 11:54:19 simpledateformat df = new SimpleDateFormat ("Yyyy-mm-dd HH:mm:ss"); String dateTime = Df.format (1294890859000L);???????????????

SYSTEM.OUT.PRINTLN (DF);

  • Related Article

    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.