溫馨提示×

php strtotime怎樣處理特定格式

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

strtotime() 函數(shù)是 PHP 中用于將任何英文文本的日期時間描述解析為 Unix 時間戳的函數(shù)。如果要以特定格式解析日期,可以使用 date() 函數(shù)與 strtotime() 函數(shù)結(jié)合使用。

首先,確定您要解析的日期字符串的格式。例如,假設(shè)您有以下日期字符串:2021-09-01 12:34:56,其格式為 YYYY-MM-DD HH:mm:ss。

要將此日期字符串轉(zhuǎn)換為 Unix 時間戳,可以使用以下代碼:

$date_string = '2021-09-01 12:34:56';
$timestamp = strtotime($date_string);
echo $timestamp; // 輸出:1630480496

如果要以特定格式解析日期,可以使用 date() 函數(shù)與 strtotime() 函數(shù)結(jié)合使用。例如,要將上述日期字符串轉(zhuǎn)換為 MM-DD-YYYY 格式,可以使用以下代碼:

$date_string = '2021-09-01 12:34:56';
$timestamp = strtotime($date_string);
$formatted_date = date('m-d-Y', $timestamp);
echo $formatted_date; // 輸出:09-01-2021

在這個例子中,strtotime() 函數(shù)首先將日期字符串轉(zhuǎn)換為 Unix 時間戳,然后 date() 函數(shù)將時間戳轉(zhuǎn)換為指定的格式。

請注意,strtotime() 函數(shù)支持的格式有很多種,具體可參考 PHP 文檔:https://www.php.net/manual/en/function.strtotime.php

如果您不確定日期字符串的格式,可以使用 date_create_from_format() 函數(shù)來解析它。例如:

$date_string = '2021-09-01 12:34:56';
$format = 'Y-m-d H:i:s';
$date = date_create_from_format($format, $date_string);
$timestamp = date_timestamp_get($date);
echo $timestamp; // 輸出:1630480496

在這個例子中,date_create_from_format() 函數(shù)根據(jù)指定的格式解析日期字符串,然后 date_timestamp_get() 函數(shù)將解析后的日期對象轉(zhuǎn)換為 Unix 時間戳。

0