strtotime()
函数本身不支持自定义格式,它默认将日期字符串转换为 Unix 时间戳。但是,您可以使用 date()
函数来格式化 Unix 时间戳为自定义格式。
例如,如果您有一个 Unix 时间戳,可以使用以下代码将其转换为自定义格式:
$timestamp = strtotime("2022-01-01");
$custom_format = date("Y-m-d H:i:s", $timestamp);
echo $custom_format; // 输出 "2022-01-01 00:00:00"
在这个例子中,我们首先使用 strtotime()
函数将日期字符串 “2022-01-01” 转换为 Unix 时间戳。然后,我们使用 date()
函数将 Unix 时间戳转换为自定义格式 “Y-m-d H:i:s”。最后,我们输出格式化后的日期字符串。