php strtotime -1 day,PHP strtotime() 函数
时间: 2024-02-24 20:56:12 浏览: 132
PHP时间戳 strtotime()使用方法和技巧
好的,您的问题是关于 PHP 函数 strtotime() 的用法。strtotime() 函数用于将人类可读的日期时间转换为 Unix 时间戳,便于在程序中进行处理。它的语法如下:
```php
strtotime(string $time [, int $now = time() ])
```
其中,$time 表示要转换的日期时间字符串,$now 表示可选参数,表示当前时间的 Unix 时间戳。如果不传入 $now 参数,则默认使用当前时间的 Unix 时间戳。
对于您提出的问题,`strtotime("-1 day")` 表示将当前时间减去一天,返回表示新时间的 Unix 时间戳。也可以使用其他类似的时间格式,如 "-2 weeks" 表示减去两周,"-3 months" 表示减去三个月,等等。
阅读全文