Answers for "get time php timezone"

PHP
-1

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
1

how to get the list of available timezones in php

//To Get the list of timezones available in php
//use the static function listIdentifiers() on DateTimeZone class
$list = DateTimeZone::listIdentifiers();
print_r($list)
Posted by: Guest on April-25-2020
0

settimezone in php

date_default_timezone_set("Asia/Ho_Chi_Minh");
echo(date('Y-m-d H:i:s');)
Posted by: Guest on August-22-2021

Browse Popular Code Answers by Language