summaryrefslogtreecommitdiff
path: root/src/third_party/timelib-2018.01/zones/sort-index.php
blob: d6f9496e2f2582605eda05f91139517f95c15cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
	$idx = file("timezonedb.idx");
	usort($idx, 'sortfunc');
	echo implode($idx);

	function sortfunc($a, $b)
	{
		/* Grep tz names */
		preg_match('@"([^"]+)"@', $a, $ma);
		$na = $ma[1];
		preg_match('@"([^"]+)"@', $b, $mb);
		$nb = $mb[1];
		
		$val = strcasecmp($na, $nb);
		return $val;
	}
?>