php中日期轉換為時間戳記:
#日期轉換為時間戳
PHP 提供了函數可以方便的將各種形式的日期轉換為時間戳,該類別函數主要是:
strtotime():將任何英文文字的日期時間描述解析為時間戳記。 mktime():從日期取得時間戳記。
strtotime() 函數用於將英文文字字串表示的日期轉換為時間戳,為 date() 的反函數,成功傳回時間戳,否則傳回 FALSE 。
語法:
int strtotime ( string time [, int now] )
參數 time 為被解析的字串,是根據 GNU 日期輸入格式表示的日期。
範例:
<?php echo strtotime("2009-10-21 16:00:10"); //输出 1256112010 echo strtotime("10 September 2008"); //输出 1220976000 echo strtotime("+1 day"), "<br />"; //输出明天此时的时间戳 ?>
推薦教學: 《php教學》
以上是php中日期怎麼轉換成時間戳的詳細內容。更多資訊請關注PHP中文網其他相關文章!