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