


Sharing on how PHP implements time comparison and time difference calculation
This article mainly introduces the method of time comparison and time difference calculation in PHP, involving the conversion of PHP date and time, calculation and other related operation skills. Friends in need can refer to it
The examples of this article describe PHP Method to implement time comparison and time difference calculation. Share it with everyone for your reference, the details are as follows:
Example 1:
##
<?php //PHP时间比较和时间差计算: //(1).比较两个绝对时间的大小 header("Content-type: text/html; charset=utf-8"); date_default_timezone_set('PRC'); $zero1=date("Y-m-d h:i:s"); //$zero1="2010-11-29 21:07:00"; $zero2="2010-11-29 21:07:00"; echo "zero1的时间为:".$zero1."<br>"; echo "zero2的时间为:".$zero2."<br>"; // strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳 if(strtotime($zero1)<strtotime($zero2)){ echo "zero1早于zero2"; }else if(strtotime($zero1)>strtotime($zero2)){ echo "zero2早于zero1"; }else{ echo "zero2等于zero1"; } echo "<br/><br/>"; ?>
zero1的时间为:2017-07-24 12:18:39 zero2的时间为:2010-11-29 21:07:00 zero2早于zero1
Example 2:
##
<?php //(2).倒计时小程序 $zero1=strtotime (date("y-m-d h:i:s")); //当前时间 ,注意H 是24小时 h是12小时 $zero2=strtotime ("2018-1-1 00:00:00"); //过年时间 //float ceil ( float $value ) //返回不小于 value 的下一个整数,value 如果有小数部分则进一位。 $guonian=ceil(($zero2-$zero1)/86400); //60s*60min*24h echo "离过年还有<strong>$guonian</strong>天!"; echo "<br/><br/>"; ?>
Run result:
离过年还有161天
Example 3:
<?php //(3).PHP计算两个时间差的方法 $startdate=date("y-m-d H:i:s"); $enddate="2017-7-30 18:00:00"; // floor — 舍去法取整 // float floor ( float $value ) // 返回不大于 value 的最接近的整数,舍去小数部分取整。 $date=floor((strtotime($enddate)-strtotime($startdate))/86400); $hour=floor((strtotime($enddate)-strtotime($startdate))%86400/3600); $minute=floor((strtotime($enddate)-strtotime($startdate))%86400/60); $second=floor((strtotime($enddate)-strtotime($startdate))%86400%60); echo "现在距结束时间还有".$date."天".$hour."小时".$minute."分钟".$second."秒"; echo "<br/><br/>"; ?>
Run result:
现在距结束时间还有6天5小时339分钟56秒
The above is the detailed content of Sharing on how PHP implements time comparison and time difference calculation. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
