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
Something simple like:
$nextday = $current_timestamp + 86400 - ($current_timestamp % 86400);
is what I'd use.