PHP获取当前日期时间和时间戳
PHP做网站时,需要获取当前日期时间,方法很简单,代码如下:
PHP获取当前日期时间的代码:
date('Y-m-d H:i:s',time());
生成的时间格式为:2020-12-12
PHP获取当前日期时间戳的代码
strtotime(date('Y-m-d H:i:s',time()));
生成的时间格式为:1354838400
PHP时间戳转换为时间的代码:
date("Y-m-d H:i:s", "2020-1-1")
更多PHP建网站知识,可以学习PHP教程。