日付範囲を作成するために strtotime を取得しようとしていますが、いくつかの基本的な範囲についてはすでに理解しています。
ここに私が把握しようとしているもののいくつかがありますが、これらのオンラインのどこにでも入力するはずの形式が見つかりません:
$startDate = strtotime('first day of last month');
$endDate = strtotime('last day of last month');
$startDate = strtotime('first of last week');
$startDate = strtotime('first of this week');
参照が見つからないのはこれらだけです。特別なプログラミングが必要で、参照がない可能性がありstrtotime
ます。
編集: 私のコードはうまくいったはずですが、PHP 5.2 にはバグがあります。
回避策を使用して、先月の最初の日に到達しました。
これは機能します: $firstDayOfLastMonth = strtotime(date('Ym', strtotime('last month')))