首頁 > 後端開發 > PHP問題 > php 時間戳記如何轉js

php 時間戳記如何轉js

藏色散人
發布: 2023-03-06 17:40:02
原創
1596 人瀏覽過

php 時間戳轉js的方法:先開啟對應的程式碼檔案;然後透過「function to_date(phpstr) {...}」方法將php時間戳轉換為js時間即可。

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板