Home
Posts
Tag
About
php时间函数
php时间函数
2018-01-23 19:47:17
将任何英文文本的日期时间描述解析为 Unix 时间戳 ``` strtotime(string $time [, int $now = time()]) return (string)unixtimestamp 使用示例: echo strtotime('2016-08-24'); //1471968000 echo strtotime('2016-08-24'.' +1 day'); //1472054400 ``` **注意**:在使用该函数获取时间戳时要注意默认时区设置,将时区设置为中国(GMT+8),写法如下: ``` date_default_timezone_set('Asia/Shanghai'); ``` [http://php.net/manual/zh/function.strtotime.php](http://php.net/manual/zh/function.strtotime.php)