search
HomeBackend DevelopmentPHP TutorialThe PHP version implements a friendly time display method (such as: 1 minute ago)

Complete php class, usually I use it with smary for quick use.

<?PHP /* 
* Data time functions.
  // * 模块
*/
defined('TSKY') || die('Permission Denied!');

function fmtMonth($month){
    return date('F, Y',day2time($month.'01'));
}

// 
function fmt_month($ts) {
    return strftime("%b,%Y",$ts);
}

// 03:02
function shartTime($ts) {
    return strftime("%H:%M",$ts);
}
// 03:02:01
function longTime($ts) {
    return strftime("%T",$ts);
}
//4月18日
function shortDate($ts) {
    return date("n月d日",$ts);
}
//2006年4月18日
function longDate($ts) {
    return date("Y年n月d日",$ts);
}

function dateTime($ts) {
    return date("Y年n月d日 H:i:s",$ts);
}
function fullDateTime($ts) {
    return date("Y年n月d日 ",$ts).week($ts);
}
function week($ts) {
    global $lang;
    return  $lang['weekDay'][date('w',$ts)];
}

function relatively_date($date) {
    if (!preg_match('/^\d+$/', $date)) $date = strtotime(trim($date));
    $sec = time() - $date;
    switch(true){
        case $sec < 3600:
            return round($sec/60). ' 分钟前';
        case $sec < 86400:
            return round($sec/3600). ' 小时前';
        case $sec < (86400 * 7):
            return round($sec/86400). ' 天前';//days ago
        case $sec < (86400 * 7 * 4):
            return round($sec/(86400*7)). ' 周前'; //weeks ago
        default:
            return longDate($date);
    }
}

function nextMonth($month/*200512->200601*/){
    return date('Ym',strtotime('+1 month',strtotime($month.'01')));
}
function prevMonth($month/*200512->200511*/){
    return date('Ym',strtotime('-1 month',strtotime($month.'01')));
}
function prevDay($day/*20050826*/){
    $day = substr($day,0,8);
    return date('Ymd',strtotime('-1 day',strtotime($day)));
}

function nextDay($day/*20050826*/){
    $day = substr($day,0,8);
    return date('Ymd',strtotime('+1 day',strtotime($day)));
}
function nextExistsDay($day/*20050109*/){
    $day = nextDay($day);
    while(!hasTopic($day) && $day  $cfg->origDate){
        $day = prevDay($day);
    }
    return hasTopic($day) ? $day : false;
}


function prev_day($day){$day = substr($day,0,8);return date('Ymd',strtotime('-1 day',strtotime($day)));}
function long_date($ts){return date("Y年n月d日",$ts);}
function day2time($day){return @strtotime($day);}





/*
echo "<pre class="brush:php;toolbar:false">";
echo strftime("a%a\n"); //  a  星期二             
echo strftime("A%A\n"); //  A  星期二             
echo strftime("b%b\n"); //  b  四月               
echo strftime("B%B\n"); //  B  四月               
echo strftime("c%c\n"); //  c  2006-4-18 3:48:11  
echo strftime("C%C\n"); //  C                     
echo strftime("d%d\n"); //  d  18                 
echo strftime("D%D\n"); //  D                     
echo strftime("e%e\n"); //  e                     
echo strftime("g%g\n"); //  g                     
echo strftime("G%G\n"); //  G                     
echo strftime("h%h\n"); //  h                     
echo strftime("H%H\n"); //  H  03                 
echo strftime("I%I\n"); //  I  03                 
echo strftime("j%j\n"); //  j  108                
echo strftime("m%m\n"); //  m  04                 
echo strftime("M%M\n"); //  M  48                 
echo strftime("n%n\n"); //  n                     
echo strftime("p%p\n"); //  p  上午               
echo strftime("r%r\n"); //  r                     
echo strftime("R%R\n"); //  R                     
echo strftime("S%S\n"); //  S  11                 
echo strftime("t%t\n"); //  t                     
echo strftime("T%T\n"); //  T                     
echo strftime("u%u\n"); //  u                     
echo strftime("U%U\n"); //  U  16                 
echo strftime("V%V\n"); //  V                     
echo strftime("W%W\n"); //  W  16                 
echo strftime("w%w\n"); //  w  2                  
echo strftime("x%x\n"); //  x  2006-4-18          
echo strftime("X%X\n"); //  X  3:48:11            
echo strftime("y%y\n"); //  y  06                 
echo strftime("Y%Y\n"); //  Y  2006               
echo strftime("Z%Z\n"); //  Z  中国标准时间       
echo strftime("%%%\n"); //  %                     
*/


The above introduces the PHP version to implement a friendly time display method (such as: 1 minute ago), including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
C语言return的用法详解C语言return的用法详解Oct 07, 2023 am 10:58 AM

C语言return的用法有:1、对于返回值类型为void的函数,可以使用return语句来提前结束函数的执行;2、对于返回值类型不为void的函数,return语句的作用是将函数的执行结果返回给调用者;3、提前结束函数的执行,在函数内部,我们可以使用return语句来提前结束函数的执行,即使函数并没有返回值。

function是什么意思function是什么意思Aug 04, 2023 am 10:33 AM

function是函数的意思,是一段具有特定功能的可重复使用的代码块,是程序的基本组成单元之一,可以接受输入参数,执行特定的操作,并返回结果,其目的是封装一段可重复使用的代码,提高代码的可重用性和可维护性。

Java中return和finally语句的执行顺序是怎样的?Java中return和finally语句的执行顺序是怎样的?Apr 25, 2023 pm 07:55 PM

源码:publicclassReturnFinallyDemo{publicstaticvoidmain(String[]args){System.out.println(case1());}publicstaticintcase1(){intx;try{x=1;returnx;}finally{x=3;}}}#输出上述代码的输出可以简单地得出结论:return在finally之前执行,我们来看下字节码层面上发生了什么事情。下面截取case1方法的部分字节码,并且对照源码,将每个指令的含义注释在

五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

Go语言开发必备:5个热门框架推荐Go语言开发必备:5个热门框架推荐Mar 24, 2024 pm 01:15 PM

《Go语言开发必备:5个热门框架推荐》Go语言作为一门快速、高效的编程语言,受到越来越多开发者的青睐。为了提高开发效率,优化代码结构,很多开发者选择使用框架来快速搭建应用。在Go语言的世界中,有许多优秀的框架可供选择。本文将介绍5个热门的Go语言框架,并提供具体的代码示例,帮助读者更好地理解和使用这些框架。1.GinGin是一个轻量级的Web框架,拥有快速

使用Golang的Web框架Echo框架实现分布式任务调度使用Golang的Web框架Echo框架实现分布式任务调度Jun 24, 2023 am 11:49 AM

随着互联网的发展和信息技术的进步,大数据时代已经来临,数据分析、机器学习等领域也得到了广泛的应用。在这些领域中,任务调度是一个不可避免的问题。如何实现高效的任务调度,对于提高效率至关重要。在本篇文章中,将介绍如何使用Golang的Web框架Echo框架实现分布式任务调度。一、介绍Echo框架Echo是一个高性能、可伸缩、轻量级的GoWeb框架。它基于HTT

MySQL.proc表的作用和功能详解MySQL.proc表的作用和功能详解Mar 16, 2024 am 09:03 AM

MySQL.proc表的作用和功能详解MySQL是一种流行的关系型数据库管理系统,开发者在使用MySQL时常常会涉及到存储过程(StoredProcedure)的创建和管理。而MySQL.proc表则是一个非常重要的系统表,它存储了数据库中所有的存储过程的相关信息,包括存储过程的名称、定义、参数等。在本文中,我们将详细解释MySQL.proc表的作用和功能

Laravel开发:如何使用Laravel Echo和Pusher实现WebSockets通信?Laravel开发:如何使用Laravel Echo和Pusher实现WebSockets通信?Jun 13, 2023 pm 05:01 PM

Laravel是一个流行的PHP框架,具有高度可扩展性和高效性,它提供了很多强大的工具和库,让开发者可以快速构建高质量的Web应用程序。其中,LaravelEcho和Pusher是两个非常重要的工具,通过它们可以很容易地实现WebSockets通信,本文将详细介绍如何在Laravel应用程序中使用这两个工具。什么是WebSockets?WebSockets

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.