What's going on with strtotime here?
$today = date('m.d.y H:i', time());
echo strtotime($today);
It does not output anything... What's going on?
|
|
|||
|
|
|
Use DateTime::createFromFormat() if you know source format of date ('m.d.y H:i') in your example
|
|||
|
|
|
|
|||
|
|
|
strtotime() is a function for formatting the date, before it is outputted. It seems like the date is already formated in the date() function, and that you make no attempt to format the date in the second line. Correct code
You can echo all those variables. |
|||||||
|
m.d.yis an ambiguous date format. TryY-m-d. – Tomalak Aug 2 '11 at 22:34