PHP 快速導覽 - 核心延伸函數 日期、時間相關 strtotime()

內建函數 (function) strtotime() 解析參數字串 (string) 中的時間,結果 UNIX 總秒數

函數說明
int strtotime(string $time [, int $now = time()])$time 為時間日期字串, $now 預設為現在時間。


參數 (parameter) 為時間日期字串,須注意回傳的是整數。


舉例如下
<?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";

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:datetime42.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



中英文術語對照
函數function
字串string
參數parameter


您可以繼續參考
日期、時間相關的類別與函數


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.strtotime.php

沒有留言: