Interval de temps

Pour éviter l'erreur :
Fatal error:  Uncaught exception 'Exception' with message
'DateInterval::__construct(): Unknown or bad format (P12H)'
This commit is contained in:
memento 2015-09-23 14:06:37 +02:00
parent cd38351c4c
commit c99bc118bc
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@
//On récupère les SMS pas encore validé, uniquement sur les dernières 12h
$now = new DateTime();
$interval = new DateInterval('P12H');
$interval = new DateInterval('PT12H');
$sinceDate = $now->sub($interval)->format('Y-m-d H:i:s');
if (!$sendeds = $db->getFromTableWhere('sendeds', ['target' => $number, 'delivered' => false, 'failed' => false, '>at' => $sinceDate], 'at', false, 1))