pel / timezone
一个简化时区选择的类。
dev-master
2019-05-10 01:20 UTC
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is not auto-updated.
Last update: 2024-09-28 18:34:59 UTC
README
timezone
关于
一个PSR-4 PHP类,用于创建时区选择下拉菜单。
加载中
include('Timezone.php'); $timezone = new Pel\Helper\Timezone;
用法
// Get the pure list, $timezone_identifier => $display // Then create the menu how you like. foreach ($timezone::getList() as $timezone_identifier => $display) { echo '<option value="' . $timezone_identifier . '">' . $display . '</option>'; } // OR // Echo the menu directly. echo $timezone::getMenu();