📌  相关文章
📜  如何在 php 代码示例中获取可用时区列表

📅  最后修改于: 2022-03-11 14:53:45.500000             🧑  作者: Mango

代码示例2
//To Get the list of timezones available in php
//use the static function listIdentifiers() on DateTimeZone class
$list = DateTimeZone::listIdentifiers();
print_r($list)