SoFunction
Updated on 2025-04-04

php converts the timestamp to an instance of the function before how long

php converts the timestamp to an instance of the function before how long

Updated: November 16, 2016 09:51:11 Submission: jingxian
Below, the editor will bring you an example of how many timestamps are converted into before the function. The editor thinks it is quite good, so I will share it with you now and give you a reference. Let's take a look with the editor

As shown below:

function wordTime($time) {
    $time = (int) substr($time, 0, 10);
    $int = time() - $time;
    $str = '';
    if ($int <= 2){
      $str = sprintf('just', $int);
    }elseif ($int < 60){
      $str = sprintf('%d seconds ago', $int);
    }elseif ($int < 3600){
      $str = sprintf('%d minutes ago', floor($int / 60));
    }elseif ($int < 86400){
      $str = sprintf('%d hour ago', floor($int / 3600));
    }elseif ($int < 2592000){
      $str = sprintf('%d days ago', floor($int / 86400));
    }else{
      $str = date('Y-m-d H:i:s', $time);
    }
    return $str;
  }

The above example of how many timestamps are converted into before the function is the entire content that the editor has shared with you. I hope it can give you a reference and I hope you can support me more.

  • Timestamp
  • Convert
  • function
  • time

Related Articles

  • A simple php implementation of MySQL data browser

    A simple php implementation of MySQL data browser...
    2007-03-03
  • How to implement image thumbnails in php

    This article uses php to implement the image thumbnail, which supports jpg, jpeg, gif, png, bmp image formats, and supports scaling according to the proportion of the original image. You can choose whether the image needs to be cropped during the image scaling process. Image quality control is added, which can achieve the highest quality of thumbnail images. Friends who need it can refer to the following code
    2016-03-03
  • PHP implements array filtering odd and even numbers example

    This article mainly introduces the example of PHP filtering odd and even numbers. Friends who need it can refer to it
    2014-04-04
  • Example of laravel model query sorted by whereIn

    Today, the editor will share with you an example of laravel model query sorting according to whereIn. It has good reference value and hope it will be helpful to everyone. Let's take a look with the editor
    2019-10-10
  • Detailed explanation of the process of installing Apache 2.4 and PHP 5.4 on Window 7/XP

    This article provides a detailed analysis and introduction to the process of installing Apache 2.4 and PHP 5.4 on Window 7/XP. Please refer to it if you need it.
    2013-06-06
  • Install Hana Flv Player in WordPress

    This article mainly introduces the method of installing and using the player plug-in Hana Flv Player in WordPress, including its simple code control. Friends who need it can refer to it.
    2016-01-01
  • Analysis of the underlying principle of CodeIgniter coherent operation

    This article mainly introduces the underlying principle of CodeIgniter coherent operation, and analyzes the common PHP OOP coherent operation implementation principle in CodeIgniter in combination with examples. It is very versatile and the code is simple and easy to understand. Friends who need it can refer to it.
    2016-05-05
  • In-depth understanding of php printf() output formatted strings

    Below, the editor will give you an in-depth understanding of the formatted strings of php printf() output. The editor thinks it is quite good. Now I share it with you and give you a reference. Let's take a look with the editor
    2016-05-05
  • PHP implements rc4 encryption algorithm code

    The decryption method of this algorithm is to re-encrypt it once and then restore it. Friends who need it can refer to it
    2012-04-04
  • How much does PHP training cost

    Many students will join the Internet industry, and the best introduction may be to learn PHP, web front-end, etc. Then today I will answer how much does php training cost
    2017-06-06

Latest Comments