Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a mehtod of DateTime class which acts like strtotime() core PHP function?

For example strtotime('last monday');

share|improve this question
1  
Yes, $date = new DateTime('2012-01-25 19:44:49.123'); echo $dt->getTimestamp();. – shadyyx Dec 5 '12 at 12:08
"Analog" in what way? – deceze Dec 5 '12 at 12:11
@deceze I guess in a way of the value it returns... – shadyyx Dec 5 '12 at 12:12
@shady Or the value it accepts. Impossible to tell without clarification. – deceze Dec 5 '12 at 12:13
@deceze That's also true :-D – shadyyx Dec 5 '12 at 12:13

3 Answers

up vote 3 down vote accepted

That would be DateTime::__construct:

$date = new DateTime('Sunday');
share|improve this answer

I think you are looking for DateTime.createFromFormat()

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

share|improve this answer

As strtotime() returns long UNIX timestamp, the DateTime has the method getTimestamp().

$date = new DateTime('2012-01-25 19:44:49.123');
echo $date->getTimestamp();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.