add seconds of timestamp in differents days code example
Example 1: add one day to timestamp
time() + 24*60*60;
Example 2: add one day to timestamp
strtotime('+1 day', $timestamp);
time() + 24*60*60;
strtotime('+1 day', $timestamp);