24

有没有DateTimestrtotime()核心 PHP 函数一样的类方法?

例如strtotime('last monday');

4

3 回答 3

29

那将是DateTime::__construct

$date = new DateTime('Sunday');
于 2012-12-05T12:08:09.410 回答
10

作为strtotime()返回长 UNIX 时间戳,DateTime 具有方法getTimestamp()

$date = new DateTime('2012-01-25 19:44:49.123');
echo $date->getTimestamp();
于 2012-12-05T12:09:44.773 回答
4

我想你正在寻找DateTime.createFromFormat()

http://php.net/manual/en/datetime.createfromformat.php

于 2012-12-05T12:08:02.340 回答