php 時間戳轉js的方法:先開啟對應的程式碼檔案;然後透過「function to_date(phpstr) {...}」方法將php時間戳轉換為js時間即可。
推薦:《PHP影片教學》
php時間戳記轉換為js時間
function to_date(phpstr) { str = parseInt(phpstr) * 1000; var newDate = new Date(str); var year = newDate.getUTCFullYear(); var month = newDate.getUTCMonth() + 1; var nowday = newDate.getUTCDate(); var hours = newDate.getHours(); var minutes = newDate.getMinutes(); var seconds = newDate.getSeconds(); return year + "-" + month + "-" + nowday + " " + hours + ":" + minutes + ":" + seconds;//拼接 2017-2-21 12:23:43 } }
以上是php 時間戳記如何轉js的詳細內容。更多資訊請關注PHP中文網其他相關文章!