最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript getTime to php date - Stack Overflow

programmeradmin4浏览0评论

I have javascript that turns dates in my view to a time string using getTime(). That then is stored as a value for an option in my select form. Once it is passed to php, how do I turn that into a php date?

I have done:

echo date("m/d/Y", '1345618799000');

1345618799000 = Tue Aug 21 2012

I have javascript that turns dates in my view to a time string using getTime(). That then is stored as a value for an option in my select form. Once it is passed to php, how do I turn that into a php date?

I have done:

echo date("m/d/Y", '1345618799000');

1345618799000 = Tue Aug 21 2012
Share Improve this question edited Aug 10, 2012 at 7:49 cdub asked Aug 10, 2012 at 7:36 cdubcdub 25.8k60 gold badges187 silver badges329 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 9

You use PHP's date() function:

date("Format here (see documentation)", round($_POST["time_field"]/1000));

Updated, thanks Yoshi.

You may use PHP's strtotime() to change any string into a Unix timestamp; strtotime()

发布评论

评论列表(0)

  1. 暂无评论