pages/fullcalendar-main/tests/manual/php/get-time-zones.php
2024-03-06 14:33:17 +01:00

9 lines
No EOL
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());