This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

The PHP Date() Function

Get Your Time Zone

The time is 08:30:46 pm America/New_York

<?php
date_default_timezone_set("America/New_York");
echo "<p>The time is " . date("h:i:s a") . date_default_timezone_get() . "</p>";
?>