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

  <blurb>Creating a timezone resource:</blurb>
  <example><![CDATA[<?php
  $tz = new DateTimeZone("Asia/Singapore");
?>]]></example>

  <blurb>Using the timezone when parsing a string:</blurb>
  <example><![CDATA[<?php
  $tz = new DateTimeZone("Pacific/Honolulu");
  $ts = new DateTimeImmutable("1978-12-22 09:15", $tz);
?>]]></example>

  <blurb>A passed timezone does not override a *parsed* timezone:</blurb>
  <example><![CDATA[<?php
  $tz = new DateTimeZone("Pacific/Honolulu");
  $ts2 = new DateTimeImmutable("1978-12-22 09:15 Europe/London", $tz);
  echo $ts2->format( DateTime::RFC2822 );
?>]]></example>
</slide>
