PHP

php strtotime函数区分大小写吗

小樊
81
2024-12-06 19:35:17
栏目: 编程语言

PHP 的 strtotime 函数本身不区分大小写,但在解析日期字符串时,如果提供了可选的第二个参数 “format”,则该参数中的格式说明符是区分大小写的。

例如:

echo strtotime("2022-01-01"); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("2022-01-01", 0); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("2022-01-01", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("2022-01-01", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("2022-01-01", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("2022-01-01", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)

然而,如果你使用自定义的格式字符串,那么请确保正确设置日期和时间格式,以便正确解析日期。例如:

echo strtotime("01-01-2022", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)
echo strtotime("01-01-2022", time()); // 返回 1641027600 (2022-01-01 00:00:00 UTC)

0
看了该问题的人还看了