在PHP中获取今天和昨天的时间戳
发布时间:2020-12-13 21:27:30 所属栏目:PHP教程 来源:网络整理
导读:如何通过在php中使用strtotime()函数来获取今天,昨天和前天12点的时间戳? 12点是一个变量,将由用户更改. 解决方法 $hour = 12;$today = strtotime($hour . ':00:00');$yesterday = strtotime('-1 day',$today);$dayBeforeYesterday = strtotime('-1 day',$y
如何通过在php中使用strtotime()函数来获取今天,昨天和前天12点的时间戳?
12点是一个变量,将由用户更改. 解决方法$hour = 12; $today = strtotime($hour . ':00:00'); $yesterday = strtotime('-1 day',$today); $dayBeforeYesterday = strtotime('-1 day',$yesterday); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |