Files
lis/public/high/plugins/fullcalendar/examples/php/get-time-zones.php
2025-01-27 08:16:55 +07: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());