Dorokhov.codes

02. Working with time

Timezone

List of timezones.

date_default_timezone_set("America/Halifax");
echo "The time is " . date("h:i:sa");

String to time

$d = strtotime("tomorrow");
echo date("Y-m-d h:i:sa", $d) . "<br>";

$d = strtotime("next Saturday");
echo date("Y-m-d h:i:sa", $d) . "<br>";

$d = strtotime("+3 Months");
echo date("Y-m-d h:i:sa", $d) . "<br>";