mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
18 lines
270 B
PHP
18 lines
270 B
PHP
--TEST--
|
|
MessageFormatter::format() insufficient numeric arguments
|
|
--EXTENSIONS--
|
|
intl
|
|
--INI--
|
|
intl.use_exceptions=On
|
|
--FILE--
|
|
<?php
|
|
|
|
$fmt = <<<EOD
|
|
{0} {1}
|
|
EOD;
|
|
|
|
$mf = new MessageFormatter('en_US', $fmt);
|
|
var_dump($mf->format(array(7)));
|
|
?>
|
|
--EXPECT--
|
|
string(5) "7 {1}"
|