Skip to content

Instantly share code, notes, and snippets.

@facine
Created June 19, 2019 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save facine/8e1f4e6aa31b2a81c6a7f3909fed1641 to your computer and use it in GitHub Desktop.
Save facine/8e1f4e6aa31b2a81c6a7f3909fed1641 to your computer and use it in GitHub Desktop.
Calculate recurring billing dates (wrong method)
<?php
// Create a new DateTime object with the first billing date.
$date = new DateTime('2019-01-31');
// Add one month and display the wrong result.
$date->modify('+1 month');
echo $date->format('Y-m-d');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment