I'm working on a function to see if an SMS was sent within the last 5 days of 'today'. I can already check if it's been sent today (see below) but I'm struggling with the up to 5 days earlier part.
// Check if SMS already sent today
if ($this->sms_sent == $today->format('Y-m-d'))
{
return true;
}
I need to know if the SMS was sent up to 5 days ago.