mirror of
https://github.com/php/php-src.git
synced 2026-04-26 17:38:14 +02:00
c5401854fc
This should fix most of the remaining issues with tabs and spaces being mixed in tests.
22 lines
499 B
PHP
22 lines
499 B
PHP
--TEST--
|
|
MessageFormatter::format(): mixed named and numeric parameters
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
//ini_set("intl.default_locale", "nl");
|
|
|
|
$mf = new MessageFormatter('en_US',
|
|
"{0,number} -- {foo,ordinal}");
|
|
|
|
var_dump($mf->format(array(2.3, "foo" => 1.3)));
|
|
var_dump($mf->format(array("foo" => 1.3, 0 => 2.3)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(10) "2.3 -- 1st"
|
|
string(10) "2.3 -- 1st"
|