PHP 指定時間戳 加上指定秒 分鐘 小時等

2021-09-12 12:58:55 字數 1196 閱讀 4360

<?php

// 當前時間戳 格式:2019-03-13 18:00:00

echo date('y-m-d h:i:s', strtotime('now'));

// 當前時間戳+1秒

echo date('y-m-d h:i:s', strtotime('+1second'));

// 當前時間戳+1分

echo date('y-m-d h:i:s', strtotime('+1minute'));

// 當前時間戳+1小時

echo date('y-m-d h:i:s', strtotime('+1hour'));

// 當前時間戳+1天

echo date('y-m-d h:i:s', strtotime('+1day'));

// 當前時間戳+1周

echo date('y-m-d h:i:s', strtotime('+1week'));

// 當前時間戳+1月

echo date('y-m-d h:i:s', strtotime('+1month'));

// 當前時間戳+1年

echo date('y-m-d h:i:s', strtotime('+1year'));

// 當前時間戳+12年,12月,12天,12小時,12分,12秒

echo date('y-m-d h:i:s', strtotime('+12year 12month 12day 12hour 12minute 12second'));

$t = 1483967416; // 指定時間戳

echo $date = date('y-m-d h:i:s', $t);

/*方法一*/

// 指定時間戳+1天

echo date('y-m-d h:i:s', $t+1*24*60*60);

// 指定時間戳+1年

echo date('y-m-d h:i:s', $t+365*24*60*60);

/*方法二*/

//$t是指定時間戳

// 指定時間戳+1天

echo date('y-m-d h:i:s', strtotime("+1day", $t));

// 指定時間戳+1年

echo date('y-m-d h:i:s', strtotime("+1year", $t));

PHP獲取指定的時間戳

php獲取指定月份的時間戳 y 2016 獲取年,示例,真實環境從前端獲取資料 m 8 獲取月,示例,真實環境從前端獲取資料 month y.m 當前年月 month start strtotime month 指定月份月初時間戳 month end mktime 23,59,59,date m s...

mysql 指定時間 MySQL查詢指定時間的資料

mysql查詢指定時間的資料 user event 使用者事件表 create time 表中儲存時間的字段 獲取當月資料 select from user event where date format create time,y m date format now y m 獲取3月份資料 sel...

unity C 把指定時間轉化成時間戳

比如今天的晚上八點 datetime today newdatetime now.year,now.month,now.day,20,0,0 system.datetime starttime timezone.currenttimezone.tolocaltime new system.datet...