-2
I have a function that generates the current time, time +12hs and time +24hs.
I need him to run a random schedule within that 12-hour and 24-hour window.
I got the following:
//DEFINE HORARIO DE BRASILIA
date_default_timezone_set('America/Sao_Paulo');
//HORARIO AGORA
$agora = date('d/m/Y H:i:s', time());
//HORÁRIO AGORA +12 HORAS
$dataliberacao12= date('d/m/Y H:i:s', strtotime('+12 hours', time()));
//HORÁRIO AGORA +24 HORAS
$dataliberacao24= date('d/m/Y H:i:s', strtotime('+24 hours', time()));
//RESULTADOS
echo 'Horário que concluiu: '.$agora.'<br/>';
echo 'Horario liberção 12h: '.$dataliberacao12.'<br/>';
echo 'Horario liberção 24h: '.$dataliberacao24;
show, I used the first option, gave it right, thank you!
– Leandro Marzullo