Skip to content

Instantly share code, notes, and snippets.

@trivoallan
Created April 13, 2015 12:14
Show Gist options
  • Save trivoallan/91f53c41111a4e097578 to your computer and use it in GitHub Desktop.
Save trivoallan/91f53c41111a4e097578 to your computer and use it in GitHub Desktop.
Date Ouiedire / MonsterK7
<?php
$date = mktime(0, 0, 0, 4, 20, 2015);
$date = strtotime('-7 years', $date);
$date = strtotime('-10 months', $date);
$date = strtotime('-5 days', $date);
var_dump(date('Y-m-d', $date));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment