1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00
Files
archived-php-src/ext/intl/tests/bug12887.phpt
T
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

30 lines
512 B
PHP

--TEST--
locale_get_keywords() bug #12887
--EXTENSIONS--
intl
--FILE--
<?php
function ut_main()
{
$res_str = '';
$keywords_arr = ut_loc_get_keywords( 'de_DE@currency=EUR;collation=PHONEBOOK;sort=PHONEBOOK' );
if ($keywords_arr) {
foreach( $keywords_arr as $key => $value){
$res_str .= "$key = $value\n";
}
}
$res_str .= "\n";
return $res_str;
}
include_once( 'ut_common.inc' );
ut_run();
?>
--EXPECT--
collation = PHONEBOOK
currency = EUR
sort = PHONEBOOK