This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/library/fullcalendar/demos/php/get-time-zones.php
2019-04-06 10:22:03 +02:00

9 lines
393 B
PHP

<?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());