fork download
  1. <?php
  2. $s = '2012-02-01';
  3. $d = new DateTime($s);
  4. $d->modify('-1 day');
  5. echo $d->format('Y-m-d').'23:59:59';
  6.  
  7. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
2012-01-3123:59:59