|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-10-09 16:07 UTC] danielkim at rogers dot com
<?php
// Arbitrary dates to find out a day value in int
$dayX = strtotime('Jan 2 2002') - strtotime('Jan 1 2002');
$dayY = strtotime('April 28 1999') - strtotime('April 27 1999');
if ($dayX == $dayY){
$aDay = $dayX; //$aDay = 86400;
$date[0] = strtotime('Oct 20 2002');
print date("M j 'y", $date[0]);
print '<br>';
for ($i=1; $i<10; $i++){
$date[$i] = $date[$i-1] + $aDay;
print date("M j 'y", $date[$i]);
print '<br>';
}
}
?>
The code prints
Oct 20 '02
Oct 21 '02
Oct 22 '02
Oct 23 '02
Oct 24 '02
Oct 25 '02
Oct 26 '02
Oct 27 '02
Oct 27 '02
Oct 28 '02
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 08:00:01 2025 UTC |
<?php // Arbitrary dates to find out a day value in int $dayX = strtotime('Jan 2 2002') - strtotime('Jan 1 2002'); $dayY = strtotime('April 28 1999') - strtotime('April 27 1999'); if ($dayX == $dayY){ $aDay = $dayX; //$aDay = 86400; $date[0] = strtotime('Oct 24 2002'); print date("M j 'y", $date[0]); print '<br>'; for ($i=1; $i<10; $i++){ $date[$i] = $date[$i-1] + $aDay; print date("M j 'y", $date[$i]); print '<br>'; } } ?> The code prints Oct 24 '02 Oct 25 '02 Oct 26 '02 Oct 27 '02 Oct 27 '02 Oct 28 '02 Oct 29 '02 Oct 30 '02 Oct 31 '02 Nov 1 '02