php date轉換時間戳記的方法:先建立PHP範例檔案;然後透過「echo strtotime("now"), "\n";」方法將date轉換時間戳記即可。
推薦:《PHP影片教學》
使用strotime函數,程式碼如下;
<?php echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n"; echo strtotime("20170808 23:00:01"), "\n"; ?>
擴充資料:
PHP strtotime() 函數
1.strtotime,可以將美國英文格式時間字串轉換的函數。
2.strtotime()可以用英文的自然語言創建某個時刻的時間戳記
#3.函數語法:int strtotime(string $time[,int $now])
4.函數作用:將美國英文格式的日期時間字串轉換成unix時間戳記。
以上是php date如何轉換時間戳的詳細內容。更多資訊請關注PHP中文網其他相關文章!