I have the following case:
I have an appointment from 08:00 to 12:00 and 13:00 to 18:00.
$hora_manha_min="08:00"; // Pode variar conforme consulta em Web Service (String)
$hora_manha_max="12:00"; // Pode variar conforme consulta em Web Service (String)
$hora_tarde_min="13:00"; // Pode variar conforme consulta em Web Service (String)
$hora_tarde_max="18:00"; // Pode variar conforme consulta em Web Service (String)
But the times from 09:00 to 09:15 and 10:45 to 11:10 are already busy
$ocupado_1_ini="09:00"; // Pode variar conforme consulta em Web Service (String)
$ocupado_1_fim="09:15"; // Pode variar conforme consulta em Web Service (String)
$ocupado_2_ini="10:45"; // Pode variar conforme consulta em Web Service (String)
$ocupado_2_fim="11:10"; // Pode variar conforme consulta em Web Service (String)
I need a random time within hours that is not within the busy hours and that I have a range set in a variable, for example:
$intervalo="00:15"; // Pode variar conforme consulta em Web Service (String)
// Resultados possíveis: 08:30,08:45,09:15,09:30,09:45,10:00,10:15,10:30,11:15,etc
I already thank you for the help.