|
MessageFormatter::parseMessagemsgfmt_parse_message(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) MessageFormatter::parseMessage -- msgfmt_parse_message — Quick parse input string ОписаниеОбъектно-ориентированный стиль
static
array
MessageFormatter::parseMessage
( string $locale
, string $pattern
, string $source
)
Процедурный стиль
array
msgfmt_parse_message
( string $locale
, string $pattern
, string $value
)
Parses input string without explicitly creating the formatter object. Use this function when the format operation is done only once and does not need and parameters or state to be kept. Список параметров
Возвращаемые значенияAn array containing items extracted, or FALSE on error ПримерыПример #1 msgfmt_parse_message() example
<?php Пример #2 OO example
<?php Результат выполнения данного примера: array ( 0 => 4560, 1 => 123, 2 => 37.073, ) array ( 0 => 4560, 1 => 123, 2 => 37.073, ) Смотрите также
|
|