如何生成特定日期,例如3月13日

时间:2019-01-12 12:38:56

标签: php

我一直在使用以下代码生成日期。

$datejoined = strip_tags(date('Y-m-d H:i:s', strtotime("+1 day")));

如何生成4月13日的特定日期?

1 个答案:

答案 0 :(得分:0)

strtotime()几乎可以从任何一行文本生成日期日期。 strtotime('April 13')在当年的4月13日还可以。使用以下代码行对其进行测试:

  print date('Y-m-d H:i:s', strtotime('April 13'));

但是我个人建议您使用更快的功能mktime()

mktime(0, 0, 0, 4, 13); // 0:00:00, 4th month, 13 day, [current year].