温馨提示×

strtotime php如何转换时间格式

PHP
小樊
81
2024-11-18 14:46:10
栏目: 编程语言

在PHP中,您可以使用strtotime()函数将一个时间字符串转换为时间戳,然后使用date()函数将时间戳转换为您想要的格式。以下是一个示例:

// 假设您有一个时间字符串
$time_string = "2022-01-01 12:00:00";

// 使用strtotime()函数将时间字符串转换为时间戳
$timestamp = strtotime($time_string);

// 使用date()函数将时间戳转换为您想要的格式
// 例如,将时间戳转换为"Y-m-d H:i:s"格式
$formatted_time = date("Y-m-d H:i:s", $timestamp);

// 输出格式化后的时间
echo $formatted_time; // 输出:2022-01-01 12:00:00

在这个例子中,我们首先使用strtotime()函数将$time_string转换为一个时间戳。然后,我们使用date()函数将时间戳转换为"Y-m-d H:i:s"格式,这是PHP中的默认时间格式。您可以根据需要更改date()函数中的格式字符串。

更多关于strtotime()date()函数的信息,请参考PHP官方文档:

0