elimde bir sürü time() ile oluşturulmuş tarih var...

$nextWeek = time() + (7 * 24 * 60 * 60);
                   // 7 days; 24 hours; 60 mins; 60secs
echo 'Now:       '. date('Y-m-d') ."\n";
echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n";
// or using strtotime():
echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ."\n";
bu kod istediim tarzda time formatını date ye çevirip 1 hafta sonrasını alıyor bunu tekrar time() formatına nasıl *******?