简单的PHP实现倒计时方法
count
d
php
倒计时
实现
方法
简单
/*** @todo Count Down (倒 计时 ) * @param String $endTime * @return String time * @example * $endTime = 2014-07-13 8:15:00;echo countDown($endTime);*/function countDown($endTime){$endTime = strtotime($endTime);$beiginTime = strtotime(dat
/** * @todo Count Down (倒<strong>计时</strong>) * @param String $endTime * @return String time * @example * $endTime = '2014-07-13 8:15:00'; echo countDown($endTime); */ function countDown($endTime){ $endTime = strtotime($endTime); $beiginTime = strtotime(date('Y-m-d H:i:s')); $timeDifference = $endTime - $beiginTime; switch ($timeDifference){ case $timeDifference < 0 : $timeDifference = '已经结束!'; break; case $timeDifference < 60 : $timeDifference = $timeDifference.'秒'; break; case $timeDifference < 3600 : $minutes = floor($timeDifference/60); $seconds = floor($timeDifference - ($minutes*60)); $timeDifference = $minutes.'分'.$seconds.'秒'; break; case $timeDifference < 86400 : $hours = floor($timeDifference/3600); $minutes = floor(($timeDifference - ($hours*3600))/60); $seconds = floor($timeDifference - ($hours*3600) - ($minutes*60)); $timeDifference = $hours.'小时'.$minutes.'分'.$seconds.'秒'; break; default: $days = floor(($timeDifference/86400)); $hours = floor(($timeDifference - ($days*86400))/3600); $minutes = floor(($timeDifference - ($days*86400) - ($hours*3600))/60); $seconds = floor($timeDifference - ($days*86400) - ($hours*3600) - ($minutes*60)); $timeDifference = $days.'天'.$hours.'小时'.$minutes.'分'.$seconds.'秒'; break; } return $timeDifference; }
登录后复制
该方法可以让整个计算在PHP后端计算并且输出一定的格式后直接在页面展示倒计时详细信息。
页面想要实现1秒自动刷新请配合ajax和定时器去进行局部刷新即可。
此处主要的是描述一个思路,至于怎么做好还是要看项目和具体的需求。
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
1 个月前
By DDD
R.E.P.O.最佳图形设置
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影:贝壳谜语解决方案
1 周前
By DDD
R.E.P.O.如果您听不到任何人,如何修复音频
2 周前
By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu
