PHP gmdate() 函數
PHP gmdate() 函數
實例
格式化 GMT/UTC 日期和時間,并返回格式化的日期字符串:
<?php
// Prints the day
echo gmdate("l") . "<br>";
// Prints the day, date, month, year, time, AM or PM
echo gmdate("l jS of F Y h:i:s A");
?>
// Prints the day
echo gmdate("l") . "<br>";
// Prints the day, date, month, year, time, AM or PM
echo gmdate("l jS of F Y h:i:s A");
?>
運行實例 ?
定義和用法
gmdate() 函數格式化 GMT/UTC 日期和時間,并返回格式化的日期字符串。
語法
gmdate(format,timestamp);
參數 | 描述 |
---|---|
format | 必需。規定輸出日期字符串的格式。可使用下列字符:
同時,也可使用下列預定義常量(從 PHP 5.1.0 開始可用):
|
timestamp | 可選。規定一個整數的 Unix 時間戳。默認是當前的本地時間(time())。 |
技術細節
返回值: | 如果成功則返回格式化的日期字符串,如果失敗則報 E_WARNING 錯并返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | PHP 5.1.0:有效范圍的時間戳是從 1901 年 12 月 13 日 20:45:54 GMT 星期五 到 2038 年 1 月 19 日 03:14:07 GMT 星期二。5.1.0 之前的版本,在某些系統上(例如 Windows)時間戳被限制在從 01-01-1970 到 19-01-2038。 PHP 5.1.1:新增標準日期/時間格式常量,用于指定 format 參數。 |

相關文章
- PHP 數據類型
- PHP 常量
- PHP 數組排序
- PHP JSON
- PHP array_chunk() 函數
- PHP array_diff_ukey() 函數
- PHP array_fill() 函數
- PHP array_intersect_assoc() 函數
- PHP array_intersect_key() 函數
- PHP array_key_last() 函數
- PHP array_pop() 函數
- PHP array_product() 函數
- PHP array_replace() 函數
- PHP array_reverse() 函數
- PHP array_splice() 函數
- PHP array_uintersect() 函數
- PHP count() 函數
- PHP cURL 函數
- PHP 5 Math 函數
- PHP 雜項 函數