36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
--TEST--
|
|
IntlDateFormatter, calendars and time zone
|
|
--INI--
|
|
date.timezone=Atlantic/Azores
|
|
--EXTENSIONS--
|
|
intl
|
|
--SKIPIF--
|
|
<?php if (version_compare(INTL_ICU_VERSION, '72.1') >= 0) die('skip for ICU < 72.1'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$fmt1 = new IntlDateFormatter('en_US',
|
|
IntlDateFormatter::FULL,
|
|
IntlDateFormatter::FULL,
|
|
'GMT+05:12',
|
|
IntlDateFormatter::TRADITIONAL);
|
|
$fmt2 = new IntlDateFormatter('en_US',
|
|
IntlDateFormatter::FULL,
|
|
IntlDateFormatter::FULL,
|
|
'GMT+05:12',
|
|
IntlDateFormatter::GREGORIAN);
|
|
$fmt3 = new IntlDateFormatter('en_US@calendar=hebrew',
|
|
IntlDateFormatter::FULL,
|
|
IntlDateFormatter::FULL,
|
|
'GMT+05:12',
|
|
IntlDateFormatter::TRADITIONAL);
|
|
var_dump($fmt1->format(strtotime('2012-01-01 00:00:00 +0000')));
|
|
var_dump($fmt2->format(strtotime('2012-01-01 00:00:00 +0000')));
|
|
var_dump($fmt3->format(strtotime('2012-01-01 00:00:00 +0000')));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(47) "Sunday, January 1, 2012 at 5:12:00 AM GMT+05:12"
|
|
string(47) "Sunday, January 1, 2012 at 5:12:00 AM GMT+05:12"
|
|
string(44) "Sunday, 6 Tevet 5772 at 5:12:00 AM GMT+05:12"
|