setTime(strtotime('2013-10-27 00:30:00 UTC') * 1000.);echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";$cal->setTime(strtotime('2013-10-27 01:30:00 UTC') * 1000.);echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";">

Set the calendar time in milliseconds since the epoch (original) (raw)

`<?php
ini_set('date.timezone', 'Europe/Lisbon');
ini_set('intl.default_locale', 'fr_FR');$cal = new IntlGregorianCalendar(2013, 5 /* May */, 1, 12, 0, 0);

echo

IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";/* In Europe/Lisbon, on 2013-10-27 at 0200, the clock goes back one hour and
the timezone from UTC+01 to UTC+00 */$cal->setTime(strtotime('2013-10-27 00:30:00 UTC') * 1000.);

echo

IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";$cal->setTime(strtotime('2013-10-27 01:30:00 UTC') * 1000.);

echo

IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n"; `

samedi 1 juin 2013 12:00:00 heure avancée d’Europe de l’Ouest dimanche 27 octobre 2013 01:30:00 heure avancée d’Europe de l’Ouest dimanche 27 octobre 2013 01:30:00 heure normale d’Europe de l’Ouest