int time ( void )
//Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
int mktime ( [int $hour [, int $minute [, int $second [, int $month [, int $day [, int $year [, int $is_dst]]]]]]] )
//傳入時, 分, 秒, 月, 日, 年, 回傳timestamp
mixed microtime ( [bool $get_as_float] )
//回傳timestamp的毫秒與秒,傳入TRUE則回傳 Float
int strtotime ( string $time [, int $now] )
//嘗試解析的傳入字串格式的日期時間(效率很低)
array getdate ( [int $timestamp] )
//以關連式陣列回傳時間回傳
bool checkdate ( int $month, int $day, int $year )
//傳入月, 日, 年, 回傳 True or False
格式化輸出:
string date ( string $format [, int $timestamp] )
//將時間格式化輸出
例: echo date('Y-m-d H:i:s l'); //會輸出 2008-03-15 14:30:22 Saturday 這樣的格式
string strftime ( string $format [, int $timestamp] )
//可以與字串混合輸出的函式, 並可按地區設定做調整(需搭配setlocale使用)
沒有留言:
張貼留言