基本介紹
- 中文名:PHP getdate
- 外文名:PHP getdate
- 性質:高數
- 領域:計算機編程
正文,定義和用法,語法,例子,
正文
定義和用法
getdate() 函式取得日期/時間信息。
語法
getdate(timestamp)
參數 | 描述 |
---|---|
timestamp | 可選。規定 Unix 時間格式中的時間。 |
例子
<?phpprint_r(getdate());?>輸出:
Array([seconds] => 45[minutes] => 52[hours] => 14[mday] => 24[wday] => 2[mon] => 1[year] => 2006[yday] => 23[weekday] => Tuesday[month] => January[0] => 1138110765)