JS 与 php 时间处理
Posted yaodaos
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 与 php 时间处理相关的知识,希望对你有一定的参考价值。
javascript时间处理:
var now=new Date(‘1458206482370’); var year=now.getUTCFullYear(); var month=now.getUTCMonth(); var date=now.getUTCDate(); var hour=now.getUTCHours(); var minute=now.getUTCHours(); var months=new Array(12); months[0]="January"; months[1]="February"; months[2]="March"; months[3]="April"; months[4]="May"; months[5]="June"; months[6]="July"; months[7]="August"; months[8]="September"; months[9]="October"; months[10]="November"; months[11]="December"; var timeStr = months[month]+" "+date+","+year+" at "+hour+":"+minute; console.log(timeStr); php: $now = 1458206482370;$time1 = date('F d, Y', ceil($now));$time2 = date('F d, Y', $now); ......
以上是关于JS 与 php 时间处理的主要内容,如果未能解决你的问题,请参考以下文章
PHP 与 Node.js - 在 Node.js 中使用 Jade 的 HTML 渲染速度会变慢吗?