Studiati questo codice:
Codice PHP:
<pre>
<?php
$month = 11;
$count = 5;
$months = array_merge(range($month, 12), range(1, $month));
for($i = 0; $i < $count; $i++) {
print("{$months[$i]}\r\n");
}
?>
</pre>
Studiati questo codice:
Codice PHP:
<pre>
<?php
$month = 11;
$count = 5;
$months = array_merge(range($month, 12), range(1, $month));
for($i = 0; $i < $count; $i++) {
print("{$months[$i]}\r\n");
}
?>
</pre>