我想知道是否有一个PHP命令来回显数字中的当前时间戳。 示例:25/02/2015和时间10:40:31应输出如:25022015104031
答案 0 :(得分:1)
如果查看php日期文档here,您会发现有足够的方法以人类可读的格式显示日期(和时间)。
在您的示例中,以下代码可以正常运行:
echo date('dmYHis');
format: description: example: d: Day of the month, 2 digits with leading zeros 01 to 31 m: Numeric representation of a month, with leading zeros 01 through 12 Y: A full numeric representation of a year, 4 digits 1999 or 2003 H: 24-hour format of an hour with leading zeros 00 through 23 i: Minutes with leading zeros 00 to 59 s: Seconds, with leading zeros 00 through 59
查看文档以了解更多显示日期格式的方法。
答案 1 :(得分:0)
这样可以解决问题:
echo date('dmYHis');
人类可读的方式:
echo date('d/m/Y H:i:s');
答案 2 :(得分:0)
echo date("d").date("m").date("Y").date("H").date("i").date("s");
或简短版
echo date('dmYHis');