亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

php strtotime怎樣轉換日期

PHP
小樊
81
2024-11-15 09:05:48
欄目: 編程語言

strtotime() 是 PHP 中的一個內置函數,用于將任何英文文本的日期時間描述解析為 Unix 時間戳。這個時間戳是自 1970 年 1 月 1 日(UTC/GMT 的午夜)開始所經過的秒數。

下面是如何使用 strtotime() 函數來轉換日期的示例:

<?php
// 將一個具體的日期字符串轉換為 Unix 時間戳
$date_string = "2022-06-30";
$timestamp = strtotime($date_string);
echo $timestamp; // 輸出結果:1656489600

// 將一個相對日期字符串轉換為 Unix 時間戳
$relative_date_string = "-1 day";
$relative_timestamp = strtotime($relative_date_string);
echo $relative_timestamp; // 輸出結果:1656384000 (這是 2022-06-29 的 Unix 時間戳)
?>

你還可以在 strtotime() 函數中使用第二個參數來指定時區。例如:

<?php
// 將一個日期字符串轉換為指定時區的 Unix 時間戳
$date_string = "2022-06-30";
$timezone = "America/New_York";
$timestamp = strtotime($date_string, strtotime("now", $timezone));
echo $timestamp; // 輸出結果:根據紐約時區的 2022-06-30 的 Unix 時間戳
?>

在這個例子中,我們首先使用 strtotime("now", $timezone) 獲取紐約時區的當前 Unix 時間戳,然后將其作為第二個參數傳遞給 strtotime() 函數,以便將日期字符串轉換為紐約時區的 Unix 時間戳。

0
龙井市| 邯郸市| 山丹县| 银川市| 阿拉善左旗| 连云港市| 沙雅县| 岑巩县| 株洲县| 上杭县| 静海县| 昂仁县| 普兰店市| 武定县| 兴和县| 湛江市| 贵德县| 涡阳县| 横峰县| 平安县| 龙胜| 容城县| 长丰县| 广水市| 衡南县| 西平县| 咸丰县| 南平市| 寻乌县| 永定县| 大洼县| 九龙城区| 保定市| 旬阳县| 兴义市| 莱州市| 乌拉特中旗| 五峰| 永春县| 航空| 辉县市|