PHP gmdate() 函數(shù)
PHP gmdate() 函數(shù)
實(shí)例
格式化 GMT/UTC 日期和時(shí)間,并返回格式化的日期字符串:
<?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");
?>
運(yùn)行實(shí)例 ?
定義和用法
gmdate() 函數(shù)格式化 GMT/UTC 日期和時(shí)間,并返回格式化的日期字符串。
語法
gmdate(format,timestamp);
參數(shù) | 描述 |
---|---|
format | 必需。規(guī)定輸出日期字符串的格式??墒褂孟铝凶址?
同時(shí),也可使用下列預(yù)定義常量(從 PHP 5.1.0 開始可用):
|
timestamp | 可選。規(guī)定一個(gè)整數(shù)的 Unix 時(shí)間戳。默認(rèn)是當(dāng)前的本地時(shí)間(time())。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回格式化的日期字符串,如果失敗則報(bào) E_WARNING 錯(cuò)并返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | PHP 5.1.0:有效范圍的時(shí)間戳是從 1901 年 12 月 13 日 20:45:54 GMT 星期五 到 2038 年 1 月 19 日 03:14:07 GMT 星期二。5.1.0 之前的版本,在某些系統(tǒng)上(例如 Windows)時(shí)間戳被限制在從 01-01-1970 到 19-01-2038。 PHP 5.1.1:新增標(biāo)準(zhǔn)日期/時(shí)間格式常量,用于指定 format 參數(shù)。 |

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