105 Date_time_set , add specific time to that date15-05-2015 13:20:00
15-05-2015 05:20:45
<?php
// 105 Date_time_set , add specific time to that date
echo "</br><span class='myheading'>105 Date_time_set , add specific time to that date</span></br>";
/*------Date Time Set Function------- */
$date = date_create("2015-05-15"); // date_create(object, hour, minute, second, microseconds)
date_time_set($date, 13,20);
echo date_format($date, "d-m-Y H:i:s")."<br><br>"; // date_format(date, format)
date_time_set($date, 05, 20, 45);
echo date_format($date, "d-m-Y H:i:s");
?>