Rumah > Artikel > pembangunan bahagian belakang > 详解PHP中的date() 函数
语法:
string date ( string $format [, int $timestamp ] )
format 规定时间戳的格式。
timestamp 规定时间戳。默认是当前的日期和时间。
其中format
较常用的字符:
d - 代表月中的天 (01 - 31)
m - 代表月 (01 - 12)
Y - 代表年 (四位数)
示例:
<?php echo date("Y/m/d") . "<br>";// 2021/3/22 echo date("Y.m.d") . "<br>";// 2021.3.22 echo date("Y-m-d"); // 2021-3-22 ?>
利用time()
获取时间戳
time()
在PHP
中是可到一个数字即时间戳,这个数字表示从格林威治标准时间(1970-01-01)到现在。
1.那么如何把这个时间戳数字换成日期格式呢,就要用到date()
函数了
$datetime=time(); //获取时间戳 echo date("Y-m-d H:i:s",$datetime);//将时间戳转换为要求的日期时间格式 echo date("Y年m月d日 H点i分s秒",$datetime);//其实上面的横杠(-)可以换成任意字符
2. 那如何把日期转为时间戳格式呢,就是转成一串数字(秒)
$str='2015-12-18 12:23:35';//设置时间变量 echo strtotime($str);//将标准的日期时间格式转为以秒为单位的时间戳数字,这里要注意,用strtotime()函数,要求被转换的时期时间为标准格式,如果用了年、月、日这种就不行了,要先转换为标准格式才行!
Atas ialah kandungan terperinci 详解PHP中的date() 函数. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!