Home  >  Article  >  Backend Development  >  java 时间戳跟PHP时间戳

java 时间戳跟PHP时间戳

WBOY
WBOYOriginal
2016-06-13 10:56:05834browse

java 时间戳和PHP时间戳

由于精度不同,导致长度不一致,直接转换错误。
JAVA时间戳长度是13位,如:1294890876859
PHP时间戳长度是10位, 如:1294890859

php
echo date('Y-m-d H:i:s','1294890876');

?

PHP时间戳在JAVA中使用,最后加三位,用000补充,如:1294890859->1294890859000

java代码

?

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");    String dateTime = df.format(1294890859000L);           System.out.println(df);  

?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn