I have a unix timestamp for the current time. I want to get the unix timestamp for the start of the next day.
$current_timestamp = time(); $allowable_start_d
My variant:
$allowable_start_date = strtotime('today +1 day');