<?xml version="1.0" encoding="ISO-8859-1"?>
<slide>
	<title>Timezones Utilities</title>
	<subtitle>Transition Times and Location Information</subtitle>

	<example result="1"><![CDATA[<?php
	$tz = new DateTimeZone("Europe/Berlin");
	$trs = $tz->getTransitions(
		strtotime('1938-01-01 UTC'), strtotime('1948-01-01 UTC')
	);

	foreach ($trs as $tr) {
		printf("%20s %7d %d %s\n",
			$tr['time'], $tr['offset'], $tr['isdst'], $tr['abbr']);
	}

	$loc = $tz->getLocation();
	echo 'Info: ', join( ' - ', $loc ), "\n";]]></example>
</slide>
