php时间戳转换的示例

网络编程 2025-03-13 23:55www.168986.cn编程入门

在PHP中,获取“今天的时间戳”并据此推算出昨天和明天0点以及23:59:59的时间戳,可以通过以下代码实现:

```php

// 获取当前时间戳

$today_timestamp = time();

// 计算一天有多少秒

$one_day_in_seconds = 3600 24;

// 计算昨天、今天和明天的时间戳

function getDayTimestamps($currentTimestamp) {

// 今天开始和结束时间戳

$today_start = $currentTimestamp;

$today_end = $currentTimestamp + $one_day_in_seconds - 1; // 今天结束时间戳为明天的起始时间戳减去一秒

// 昨天开始和结束时间戳

$yesterday_start = $currentTimestamp - $one_day_in_seconds; // 昨天开始时间戳为今天起始时间戳减去一天的时间长度

$yesterday_end = $today_start - 1; // 昨天结束时间戳为今天开始时间戳减去一秒(即昨天的最后一秒)

// 明天开始和结束时间戳(注意:这里假设明天的时间戳为今天结束时间戳加上一天的时间长度)

$tomorrow_start = $today_end + $one_day_in_seconds; // 明天开始时间戳为今天的最后一秒加上一天的时间长度(即明天的起始时间)

$tomorrow_end = $tomorrow_start + $one_day_in_seconds - 1; // 明天结束时间戳为明天的最后一秒(即明天的最后一秒减去一秒)

// 将时间戳组合成数组返回

return array(

'yesterday' => array($yesterday_start, $yesterday_end), // 昨天的开始和结束时间戳数组

'today' => array($today_start, $today_end), // 今天的开始和结束时间戳数组

'tomorrow' => array($tomorrow_start, $tomorrow_end) // 明天的开始和结束时间戳数组

);

}

// 获取昨天、今天和明天的时间戳数组并输出

$timestamps = getDayTimestamps($today_timestamp); // 获取今天的时间戳并计算昨天和明天的时间戳数组

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by