[wd_asp elements=’search’ ratio=’100%’ id=1]

Add time Php

5th September 2016

Php - Dates & Time

php codehaven


//set timezone
date_default_timezone_set('GMT');

//set an date and time to work with
$start = '12:00:00';

$alert = '120';

//display the converted time
echo date('Y-m-d H:i:s',strtotime('+'.$alert.'minutes',strtotime($start)));