strtotime()
函數(shù)本身不支持自定義格式,它默認(rèn)將日期字符串轉(zhuǎn)換為 Unix 時(shí)間戳。但是,您可以使用 date()
函數(shù)來格式化 Unix 時(shí)間戳為自定義格式。
例如,如果您有一個(gè) Unix 時(shí)間戳,可以使用以下代碼將其轉(zhuǎn)換為自定義格式:
$timestamp = strtotime("2022-01-01");
$custom_format = date("Y-m-d H:i:s", $timestamp);
echo $custom_format; // 輸出 "2022-01-01 00:00:00"
在這個(gè)例子中,我們首先使用 strtotime()
函數(shù)將日期字符串 “2022-01-01” 轉(zhuǎn)換為 Unix 時(shí)間戳。然后,我們使用 date()
函數(shù)將 Unix 時(shí)間戳轉(zhuǎn)換為自定義格式 “Y-m-d H:i:s”。最后,我們輸出格式化后的日期字符串。