// parse your date as carbon date & only take the date string using toDateString
$start_date = Carbon::parse('2021-03-04')->toDateString();
// take the Today time, subtract 3 months from it & only take date string from it
$today = Carbon::today()->subMonths(3)->toDateString();
if ($start_date < $today) {
// whatever you wanna do here
}
4条答案
按热度按时间9nvpjoqh1#
你可以用
Carbon
要做到这一点:cedebl8k2#
您需要类似于:
我还没有测试代码,但是你可以得到一个想法。
h9a6wy2h3#
您可以使用以下选项:
jogvjijk4#
你可以用碳来做这个。
注:碳添加时间戳,因此使用
toDateString()
忽略时间戳&日期字符串中的唯一因素