1

この連結されたメソッドのstrtotimeセクションは機能しません

date("m/d/y", strtotime("last ".date("l")." of this ".date("F")))

「この 6 月の最後の月曜日」 であり、これはまさに前述の 内の文字列がstrtotime翻訳するものです

代わりに私は得る"12/31/69"

4

2 に答える 2

7

を取り除くだけthisです。

php > var_dump(date("m/d/y", strtotime("last ".date("l")." of ".date("F"))));
string(8) "06/25/13"

または使用this month

php > var_dump(date("m/d/y", strtotime("last ".date("l")." of this month")));
string(8) "06/25/13"
于 2013-06-10T20:09:39.907 に答える