PHP strtotime 日期时间函数

  • 定义和用法

    strtotime - 将任何字符串的日期时间描述解析为 Unix 时间戳
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    strtotime ( string $time [, int $now = time() ] )   
    
    本函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于 now 参数给出的时间,如果没有提供此参数则用系统当前时间。本函数将使用 TZ 环境变量(如果有的话)来计算时间戳。自 PHP 5.1.0 起有更容易的方法来定义时区用于所有的日期/时间函数。此过程在 date_default_timezone_get() 函数页面中有说明。
  • 参数

    参数 必需的 描述
    time 日期/时间字符串。正确格式的说明详见 日期与时间格式
    now 用来计算返回值的时间戳。
  • 返回值

    成功则返回时间戳,否则返回 FALSE。在 PHP 5.1.0 之前本函数在失败时返回 -1。
  • 示例

    <?php
    echo strtotime("now"), "<br/>";
    echo strtotime("10 September 2000"), "<br/>";
    echo strtotime("+1 day"), "<br/>";
    echo strtotime("+1 week"), "<br/>";
    echo strtotime("+1 week 2 days 4 hours 2 seconds"), "<br/>";
    echo strtotime("next Thursday"), "<br/>";
    echo strtotime("last Monday"), "<br/>";
    ?>
    
    尝试一下
  • 相关函数

    date_create_from_format() - 根据给定的格式解析日期时间字符串
    checkdate() - 验证一个格里高里日期
    strptime() - 解析由 strftime 生成的日期/时间