Skip to content

Instantly share code, notes, and snippets.

@IgorDePaula
Created November 27, 2015 17:37
Show Gist options
  • Save IgorDePaula/6f549adf3a2ad4ae95f4 to your computer and use it in GitHub Desktop.
Save IgorDePaula/6f549adf3a2ad4ae95f4 to your computer and use it in GitHub Desktop.
<?php
$datas = new DatePeriod(new DateTime('2015-01-30'), new DateInterval('P1M'), 10);
foreach ($datas as $data) {
echo $data->format('d/m/Y'), '<br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment