PHP: Problem with strtotime

前端 未结 4 1554
长发绾君心
长发绾君心 2020-12-21 19:02

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

4条回答
  •  长情又很酷
    2020-12-21 19:16

    Use DateTime::createFromFormat() if you know source format of date ('m.d.y H:i') in your example

    print DateTime::createFromFormat('m.d.y H:i',$date)->getTimestamp()
    

    Manual
    DateTime::createFromFormat
    DateTime::getTimestamp

提交回复
热议问题