$timeIsOK = preg_match('#^([01]?[0-9]|2[0-3]):[0-5][0-9]?$#', $timeString);
src: http://stackoverflow.com/questions/11005728/php-validating-24-hour-time-format
$timeIsOK = preg_match('#^([01]?[0-9]|2[0-3]):[0-5][0-9](:[0-5][0-9])?$#', $timeString);