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...