例えば、先月の初日の日付を取得したい場合、
$now = FrozenDate::now(); $first_day_of_last_month = now->subMonth(1)->fistOfMonth();
でも取得することが出来ますが、長ったらしいのでparseを使って文字列で渡してしまいましょう。
$first_day_of_last_month = FrozenDate::parse(‘first day of last month’); “` これで一発で取得することが出来ます。
もし、来月、あるいは今月の日付を取得したい場合はlast->this or nextなどに置き換えて実行すると同様にParseを用いてかんたんに日付が取得できます。