<?xml version="1.0" encoding="ISO-8859-1"?>
<slide>
	<title>Using Timezones</title>

	<blurb>Specifying timezone abbreviation while parsing:</blurb>
	<example><![CDATA[<?php
	$ts = new DateTime("1978-12-22 09:15 CET");
?>]]></example>
<break lines="3"/>
	<blurb>Using timezone abbreviations is deprecated, one should always use
	either a default timezone, or the full identifier.</blurb>
<break lines="3"/>

	<blurb>Specifying timezone identifier while parsing:</blurb>
	<example><![CDATA[<?php
	$ts = new DateTime("1978-12-22 09:15 Europe/Oslo");
?>]]></example>
</slide>
