Java ---- php time converter _ PHP Tutorial

Source: Internet
Author: User
Java ---- php time conversion. Java timestamp and PHP timestamp conversion problems: JAVA timestamp length is 13 bits, for example: 1294890876859PHP timestamp length is 10 bits, for example: 1294890859 main last three bits, JAVA timestamp and PHP timestamp conversion problems in java: JAVA timestamp length is 13 bits, for example: 1294890876859
The PHP timestamp length is 10 characters. for example, the last three digits of 1294890859 are different. The JAVA timestamp is used in PHP. the last three digits are removed, for example, 1294890876859-> 1294890876. Result: 11:54:36.

Echo date ('Y-m-d H: I: S', '20140901 ');


The PHP timestamp is used in JAVA, and the last three digits are added with 000, for example: 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 );

JAVA timestamp length is 13 bits, for example, 1294890876859 PHP timestamp length is 10 bits, for example, the difference between the last three digits of 1294890859, in JAVA...

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.