<?php $startTime = "11:45"; list($hours, $minutes) = explode(':', $startTime); $date = new DateTime(date('Y-m-d', 1528754400)); $date->add(new DateInterval('PT' . $hours .'H' . $minutes . 'M')); echo $date->format('Y-m-d H:i:s') . "\n";
You have javascript disabled. You will not be able to edit any code.