Voici quelques lignes pour obtenir le timestamp de minuit pour un timestamp donné :


$timestamp = "1383436800";

$date = new DateTime(date('c',$timestamp));
$date->setTime(0, 0, 0);
...