Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/assets/js/fullcalendar-2/demos/php/get-timezones.php
1296 views
1
<?php
2
3
//--------------------------------------------------------------------------------------------------
4
// This script outputs a JSON array of all timezones (like "America/Chicago") that PHP supports.
5
//
6
// Requires PHP 5.2.0 or higher.
7
//--------------------------------------------------------------------------------------------------
8
9
echo json_encode(DateTimeZone::listIdentifiers());
10