mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
92039fed22
null is now accepted for two first (mandatory arguments). Passing null as the package name causes NULL to be passed to ICU and the default ICU data to be loaded. Passing null as the locale name causes the default locale to be used.
27 lines
614 B
PHP
27 lines
614 B
PHP
--TEST--
|
|
IntlCalendar::setTime() basic test
|
|
--INI--
|
|
date.timezone=Atlantic/Azores
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
$r = new ResourceBundle('en_US', NULL);
|
|
$c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0);
|
|
var_dump($c);
|
|
|
|
ini_set('intl.default_locale', 'pt_PT');
|
|
$r = new ResourceBundle(NULL, NULL);
|
|
$c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0);
|
|
var_dump($c);
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
string(14) "h:mm:ss a zzzz"
|
|
string(12) "H:mm:ss zzzz"
|
|
==DONE==
|