wekan/packages/wekan-fullcalendar/fullcalendar/demos/php/get-timezones.php

9 lines
393 B
PHP
Raw Normal View History

2023-08-22 18:51:03 -03:00
<?php
//--------------------------------------------------------------------------------------------------
// This script outputs a JSON array of all timezones (like "America/Chicago") that PHP supports.
//
// Requires PHP 5.2.0 or higher.
//--------------------------------------------------------------------------------------------------
echo json_encode(DateTimeZone::listIdentifiers());