Answers for "check current timze zone in php"

PHP
2

asia time zone in php

<?php
date_default_timezone_set("Asia/Calcutta");   //India time (GMT+5:30)
echo date('d-m-Y H:i:s');
?>
Posted by: Guest on August-01-2020
0

php current datettime us time zone

<?php
$date = new DateTime("now", new DateTimeZone('America/New_York') );
echo $date->format('Y-m-d H:i:s');
Posted by: Guest on August-03-2020

Browse Popular Code Answers by Language