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

?>