You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
289 B
14 lines
289 B
<?php
|
|
$date = Date('Y-m-d');
|
|
$date1 = Date('Y-m-d', strtotime("$date +1 months"));
|
|
|
|
|
|
$a = 1;
|
|
$b = 12 / $a;
|
|
for ($i = 0; $i < $b; $i++) {
|
|
$c = $i * $a;
|
|
$date1 = Date('Y-m-d', strtotime("$date + $c months"));
|
|
echo '<pre>';
|
|
print_r($date1);
|
|
echo '</pre>';
|
|
}
|
|
|