


PHP formatted timestamp display friendly time implementation ideas and code_PHP tutorial
PHP formatted timestamp display friendly time implementation ideas and codes
In the project, the time is always displayed as 2014-10-20 10:22, which seems very dull. On websites such as Weibo and QQ Space, the time is usually displayed as a few seconds ago, a few minutes ago, a few hours ago, etc. that are easy to read. We call this a friendly time format. So how to implement it using php?
The general idea is as follows:
If it is a New Year's Eve and it is greater than 3 days, it will be displayed as the specific time
If it were today
If it is within one minute, it will show how many seconds ago it was
If it is within one hour, it will display a few minutes ago
If it is the current day and is greater than one hour, it will be displayed as a few hours ago
If it is yesterday, the time will be displayed as yesterday
If it is the day before yesterday, it will display the time the day before yesterday
If it is more than three days (no New Year span), it will display the day of the month
Based on the above ideas, it is not difficult to write the implementation code:
The implementation code is as follows:
//Format friendly display time
Function formatTime($time){
$now=time();
$day=date('Y-m-d',$time);
$today=date('Y-m-d');
$dayArr=explode('-',$day);
$todayArr=explode('-',$today);
//The number of days in the distance. This method may not be accurate if it exceeds 30 days, but it is accurate within 30 days, because a month may be 30 or 31 days
$days=($todayArr[0]-$dayArr[0])*365+(($todayArr[1]-$dayArr[1])*30)+($todayArr[2]-$dayArr[ 2]);
//Distance in seconds
$secs=$now-$time;
if($todayArr[0]-$dayArr[0]>0 && $days>3){//Crossing the year and more than 3 days
return date('Y-m-d',$time);
}else{
if($days<1){//Today
if($secs<60)return $secs.'seconds ago';
elseif($secs<3600)return floor($secs/60)."Minutes ago";
else return floor($secs/3600)."hours ago";
}else if($days<2){//Yesterday
$hour=date('h',$time);
Return "yesterday".$hour.'point';
}elseif($days<3){//The day before yesterday
$hour=date('h',$time);
Return "the day before yesterday".$hour.'point';
}else{//Three days ago
return date('m month d',$time);
}
}
}

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.

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

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

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

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