PHP

php strtotime的文档解读

小樊
82
2024-11-30 16:01:49
栏目: 编程语言

strtotime() 是 PHP 中的一个内置函数,用于将任何英文文本的日期时间描述解析为 Unix 时间戳。这个函数非常强大,支持多种日期和时间格式,甚至可以处理相对时间表达式(如 “+1 day” 或 “-2 weeks”)。

strtotime() 函数的基本语法:

strtotime(string $time, int $now = null): int

strtotime() 函数支持的格式:

strtotime() 函数支持许多日期和时间格式,包括但不限于以下示例:

此外,strtotime() 还支持一些特殊的相对时间表达式,例如:

strtotime() 函数的使用示例:

// 解析固定格式的日期字符串
$timestamp = strtotime("2022-08-15");
echo $timestamp; // 输出:1659916800 (2022年8月15日的Unix时间戳)

// 解析带相对时间的字符串
$timestamp = strtotime("+1 day");
echo $timestamp; // 输出:当前时间戳加1天后的时间戳

// 解析特殊相对时间表达式
$timestamp = strtotime("next Friday");
echo $timestamp; // 输出:下一个星期五的Unix时间戳

总之,strtotime() 函数是一个非常实用的工具,可以帮助您在 PHP 中轻松地解析和处理日期和时间。

0
看了该问题的人还看了