<?php
$s = '2012-02-01';
$d = new DateTime($s);
$d->modify('-1 day');
$r = new DateTime($d->format('Y-m-d').' 23:59:59');
print_r($r);
?>