Answers for "php all timezones list"

PHP
2

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

Php get all timezone

$tzlist = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language