当前位置:网站首页>PHP timestamp subtraction converts to days, hours, minutes and seconds
PHP timestamp subtraction converts to days, hours, minutes and seconds
2022-07-28 12:15:00 【History teacher-】
Subtract the two timestamps to get the seconds of the time difference , And then convert it into X God X Hours X branch X second
<?php
// Custom function :time2string($second) Enter the number of seconds converted into days / How many hours / How many points / How many seconds of string
function time2string($second){
$day = floor($second/(3600*24));
$second = $second%(3600*24); // Except for the rest of the day
$hour = floor($second/3600);
$second = $second%3600; // Except for the rest of the hour
$minute = floor($second/60);
$second = $second%60; // Take out the rest of the whole minute
// Return string
return $day.' God '.$hour.' Hours '.$minute.' branch '.$second.' second ';
}
// Get from now to 2011 year 11 month 11 Japan 11 spot 11 branch 11 How long is the second
$time1 = strtotime('2021-11-11 11:11:11');
$time2 = strtotime(now);
// Subtract to get the difference second Count
$time3 = $time1 - $time2;
// Output
echo ' From now until 2021 year 11 month 11 Japan 11 spot 11 branch 11 Seconds and :'.time2string($time3);————————————————
Copyright notice : This paper is about CSDN Blogger 「 Don't mess with Xuanxuan 」 The original article of , follow CC 4.0 BY-SA Copyright agreement , For reprint, please attach the original source link and this statement .
Link to the original text :https://blog.csdn.net/xuander666/article/details/108443935
边栏推荐
- DNS series (III): how to avoid DNS spoofing
- [real question of written examination]
- The principle and use of the wrap file of tolua
- Unity 一键替换场景中的物体
- Untiy中控制Animation的播放速度
- Matlab sets the size of graphics window and image and the position of legend
- Pycharm debugging mode
- 太赞了!京东研发一哥力荐的高可用网站构建技术PDF,备好水,慢慢啃
- China business CDP white paper | love Analysis Report
- 2022.07.11 summer training personal qualifying (VI)
猜你喜欢
随机推荐
一些知识概念
Modify the running container port mapping
Test platform (V) knowledge points supplement
Pycharm debugging mode
[diary of supplementary questions] [2022 Niuke summer multi school 2] i-let fat tension
Code simplification
Hcip day 6 (OSPF related knowledge)
P5472 [NOI2019] 斗主地(期望、数学)
Laravel之缓存
要想组建敏捷团队,这些方法不可少
本地化、低时延、绿色低碳:阿里云正式启用福州数据中心
QT writing IOT management platform 42 data query export print
The reflect mechanism obtains the attribute and method information of class
14. User web layer services (II)
Google Earth engine (GEE) -- problems in the use of coordinate projection and reduceresolution functions in image downscaling
PHP获取本周所有日期或者最近七天所有日期
Start from scratch blazor server (2) -- consolidate databases
直接插入排序与希尔排序
Final modifier attribute
Style conversion model style_ Transformer project instance pytorch implementation








