首頁  >  文章  >  php框架  >  ThinkPHP5.1中如何使用時間處理函數

ThinkPHP5.1中如何使用時間處理函數

WBOY
WBOY轉載
2023-06-03 17:13:101415瀏覽

一、時間戳記轉換為日期時間

在PHP 中,UNIX 時間戳可以轉換為日期時間字串,這是透過呼叫date () 函數實現的。在 ThinkPHP5.1 中,我們可以使用 \think\helper\Str 類別的 toDateTimeString() 方法來將時間戳記轉換為日期時間字串。

例如:

use think\helper\Str;

$time = 1573679399;
echo Str::toDateTimeString($time);
// 输出: 2019-11-14 14:03:19

二、日期時間轉換為時間戳

#在PHP 中,我們可以使用strtotime() 函數將日期時間字符串轉換為UNIX 時間戳記。在 ThinkPHP5.1 中,我們可以使用 \think\helper\Str 類別的 unixTime() 方法將日期時間字串轉換為時間戳記。

例如:

use think\helper\Str;

$datetime = '2019-11-14 14:03:19';
echo Str::unixTime($datetime);
// 输出: 1573679399

三、時間格式化

#在PHP 中,我們可以使用date() 函數對日期時間字串進行格式化。在 ThinkPHP5.1 中,我們可以使用 \think\helper\Str 類別的 dateFormat() 方法來格式化日期時間字串。

例如:

use think\helper\Str;

$datetime = '2019-11-14 14:03:19';
echo Str::dateFormat($datetime, 'Y年m月d日 H:i:s');
// 输出: 2019年11月14日 14:03:19

在 dateFormat() 方法中,第一個參數是需要格式化的日期時間字串,第二個參數是格式化字串。常用的格式化字串如下:

年份(4 位數)月(01-12)日期(01-31)小時(00-23)
日期格式字元 說明
# #Y
m
d
H

################################################# i######分鐘(00-59)############s######秒鐘(00-59)########### #######四、時間差計算#########在PHP 中,我們可以使用strtotime() 函數計算兩個日期時間之間的時間差。在 ThinkPHP5.1 中,我們可以使用 \think\helper\Str 類別的 time() 方法來計算兩個日期時間之間的時間差。 ######例如:###
use think\helper\Str;

$start = '2019-11-14 14:03:19';
$end = '2019-11-15 16:05:12';

$diff = Str::time($start, $end);

echo $diff->format('%a 天 %h 小时 %i 分钟 %s 秒');
// 输出: 1 天 2 小时 1 分钟 53 秒
###在 time() 方法中,第一個參數是開始時間,第二個參數是結束時間。如果要計算兩個時間之間的天數、小時數、分鐘數、秒數等等,可以使用 DateTime 物件的 format() 方法。 ###

以上是ThinkPHP5.1中如何使用時間處理函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除