Get Your Time Zone

<!DOCTYPE html> 
<html> 
<body> 

<?php 
date_default_timezone_set("Asia/Kolkata"); // India 
echo "The time is " . date("h:i:sa"); 
?> 

</body> 
</html>

Output

The time is 10:07:17am