Is there a mehtod of DateTime class which acts like strtotime() core PHP function?
DateTime
strtotime()
For example strtotime('last monday');
strtotime('last monday');
$date = new DateTime('2012-01-25 19:44:49.123'); echo $dt->getTimestamp();
That would be DateTime::__construct:
DateTime::__construct
$date = new DateTime('Sunday');
I think you are looking for DateTime.createFromFormat()
DateTime.createFromFormat()
http://php.net/manual/en/datetime.createfromformat.php
As strtotime() returns long UNIX timestamp, the DateTime has the method getTimestamp().
getTimestamp()
$date = new DateTime('2012-01-25 19:44:49.123'); echo $date->getTimestamp();
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
5 months ago
viewed
53 times
active
$date = new DateTime('2012-01-25 19:44:49.123'); echo $dt->getTimestamp();. – shadyyx Dec 5 '12 at 12:08