PHP general function - date generation timeline
<span> 1</span> <span>/*</span><span>* </span><span> 2</span> <span> * 时间轴函数, Unix 时间戳 </span><span> 3</span> <span> * @param int $time 时间 </span><span> 4</span> <span>*/</span> <span> 5</span> <span>function</span> TranTime(<span>$time</span><span>) { </span><span> 6</span> <span>//</span><span>$time = strtotime($time);</span> <span> 7</span> <span>$nowTime</span> = <span>time</span><span> (); </span><span> 8</span> <span>$message</span> = ''<span>; </span><span> 9</span> <span>//</span><span>一年前</span> <span>10</span> <span>if</span> (<span>idate</span> ( 'Y', <span>$nowTime</span> ) != <span>idate</span> ( 'Y', <span>$time</span><span> )) { </span><span>11</span> <span>$message</span> = <span>date</span> ( 'Y年m月d日', <span>$time</span><span> ); </span><span>12</span> <span> } </span><span>13</span> <span>else</span><span> { </span><span>14</span> <span>//</span><span>同一年</span> <span>15</span> <span>$days</span> = <span>idate</span> ( 'z', <span>$nowTime</span> ) - <span>idate</span> ( 'z', <span>$time</span><span> ); </span><span>16</span> <span>switch</span>(<span>true</span><span>){ </span><span>17</span> <span>//</span><span>一天内</span> <span>18</span> <span>case</span> (0 == <span>$days</span>): <span>19</span> <span>$seconds</span> = <span>$nowTime</span> - <span>$time</span><span>; </span><span>20</span> <span>//</span><span>一小时内</span> <span>21</span> <span>if</span> (<span>$seconds</span> < 3600<span>) { </span><span>22</span> <span>//</span><span>一分钟内</span> <span>23</span> <span>if</span> (<span>$seconds</span> < 60<span>) { </span><span>24</span> <span>if</span> (3 > <span>$seconds</span><span>) { </span><span>25</span> <span>$message</span> = '刚刚'<span>; </span><span>26</span> } <span>else</span><span> { </span><span>27</span> <span>$message</span> = <span>$seconds</span> . '秒前'<span>; </span><span>28</span> <span> } </span><span>29</span> <span> } </span><span>30</span> <span>$message</span> = <span>intval</span> ( <span>$seconds</span> / 60 ) . '分钟前'<span>; </span><span>31</span> <span> } </span><span>32</span> <span>$message</span> = <span>idate</span> ( 'H', <span>$nowTime</span> ) - <span>idate</span> ( 'H', <span>$time</span> ) . '小时前'<span>; </span><span>33</span> <span>break</span><span>; </span><span>34</span> <span>//</span><span>昨天</span> <span>35</span> <span>case</span> (1 == <span>$days</span>): <span>36</span> <span>$message</span> = '昨天' . <span>date</span> ( 'H:i', <span>$time</span><span> ); </span><span>37</span> <span>break</span><span>; </span><span>38</span> <span>//</span><span>前天</span> <span>39</span> <span>case</span> (2 == <span>$days</span>): <span>40</span> <span>$message</span> = '前天 ' . <span>date</span> ( 'H:i', <span>$time</span><span> ); </span><span>41</span> <span>break</span><span>; </span><span>42</span> <span>//</span><span>7天内</span> <span>43</span> <span>case</span> (7 > <span>$days</span>): <span>44</span> <span>$message</span> = <span>$days</span> . '天前'<span>; </span><span>45</span> <span>break</span><span>; </span><span>46</span> <span>//</span><span>超过7天</span> <span>47</span> <span>default</span>: <span>48</span> <span>$message</span> = <span>date</span> ( 'n月j日 H:i', <span>$time</span><span> ); </span><span>49</span> <span>break</span><span>; </span><span>50</span> <span> } </span><span>51</span> <span> } </span><span>52</span> <span>return</span> <span>$message</span><span>; </span><span>53</span> }
The above introduces the general function of PHP - date generation timeline, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Today we are mainly going to take a look at the time application method of golang time package. The general rule between the two is that "wall time" is used to tell time, and "monotonic clock" is used to measure time; there are other clock processing methods.

vue3 uses element-plus to call the message environment: vue3+typescript+element-plus1. After the global introduction of element, element has added the global method $message in app.config.globalProperties, so you can use mounted(){(thisasany) directly in the optionsAPI. $message.success("this.$message");}2. In the compositionAPI, the setup method passes in two variables props and

1. Overview As part of this article, let us start with some problems with the existing Date and CalendarAPI and explore how the new Java8Date and TimeAPI solve these problems. We will also take a look at the core classes in the Java8 time class library, such as LocalDate, LocalTime, LocalDateTime, ZonedDateTime, Period, Duration and their APIs. 2. The problem of thread safety of the old time API (before Java 8)-Date and Calendar classes are not thread-safe, making it difficult for developers to debug concurrency problems of these APIs and need to write additional code to deal with them.

Pythontime module time acquisition and conversion Python's Time library can perform time-related processing, such as accessing the current date and time, outputting time in different formats, and waiting for a specified time. 1. Get the time 1.1. Timestamp importtimetimestamp=time.time()#1682737552.5009851 Greenwich Mean Time (GMT) The total number of seconds from 00:00:00 on January 1, 1970 to the present 1.2. Structured time importtimestruct_time= time.localtime()#time.struct_time(tm_year=2

1. Two ways to represent time in Python: timestamp: offset in seconds relative to 1970.1.100:00:00, unique time tuple struct_time: a total of 9 elements>tm_year: year 1-12> tm_mon: month 1-12>tm_mday: day 1-31>tm_hour: hour 0-23>tm_min: minute 0-59>tm_sec: second 0-59>tm_wday: week 0-6 (0 means Sunday)>tm_day: Day of the year 1-366>tm_isdst: whether it is daylight saving, the default is -1.ti

Golang is a very popular programming language. Its easy-to-learn, efficient and fast features attract more and more developers. But during use, you will inevitably encounter some problems and errors. For example, when using the After method in the time package, you may encounter an error of undefined: time.After. This article will introduce how to solve this error. Understand the cause of the error In Golang, if we use an unexported function name or incorrect

Use the PHP function "time" to return the current UNIX timestamp. The UNIX timestamp refers to the total number of seconds since 0:00:00 on January 1, 1970 Coordinated Universal Time (UTC). In PHP, you can use the built-in function "time" to get the current UNIX timestamp. This article explains how to use this function and provides corresponding code examples. Code example: <?php$timestamp=time();echo" current

time.Now() returns a Time type. Sometimes others give us a timestamp, and we need to reverse it as follows, timestamp-time type. What you need to use is time.Unix.
