当前位置 : 主页 > 编程语言 > java >

PHP获取时间总结

来源:互联网 收集:自由互联 发布时间:2022-06-23
查询前一年时间戳 mktime(0,0,0,date('m'),date('d'),date('Y')-1); strtotime('-12 month'); 查询前6个月时间戳 mktime(0,0,0,date('m')-6,date('d'),date('Y')); strtotime('-6 month'); 格式化时间时间戳 date('Y-m-d H:i:s',time

查询前一年时间戳


mktime(0,0,0,date('m'),date('d'),date('Y')-1);
strtotime('-12 month');

查询前6个月时间戳


mktime(0,0,0,date('m')-6,date('d'),date('Y'));
strtotime('-6 month');

 格式化时间时间戳


date('Y-m-d H:i:s',time());

 

上一篇:ubuntu下php安装目录说明
下一篇:没有了
网友评论