Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この連結されたメソッドのstrtotimeセクションは機能しません
strtotime
date("m/d/y", strtotime("last ".date("l")." of this ".date("F")))
例
「この 6 月の最後の月曜日」 であり、これはまさに前述の 内の文字列がstrtotime翻訳するものです
代わりに私は得る"12/31/69"。
"12/31/69"
を取り除くだけthisです。
this
php > var_dump(date("m/d/y", strtotime("last ".date("l")." of ".date("F")))); string(8) "06/25/13"
または使用this month
this month
php > var_dump(date("m/d/y", strtotime("last ".date("l")." of this month"))); string(8) "06/25/13"