Skip to content

Instantly share code, notes, and snippets.

@coderdiaz
Created March 3, 2015 22:51
Show Gist options
  • Save coderdiaz/9dfd76dfa7a301f9ff15 to your computer and use it in GitHub Desktop.
Save coderdiaz/9dfd76dfa7a301f9ff15 to your computer and use it in GitHub Desktop.
Sumar un intervalo de días en PHP
<?php
$interval = 7;
$fecha = '2015-02-25';
$date = new DateTime(''.$fecha.'');
$date->add(new DateInterval('P'.$interval.'D'));
echo $date->format('Y-m-d') . "\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment