| 
 
update : 2015.11.03
 
php.shukuma.com검색:
  
 | 
MessageFormatter::parseMessagemsgfmt_parse_message(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) MessageFormatter::parseMessage -- msgfmt_parse_message — Quick parse input string 설명객체 기반 형식 
   public
   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  예제Example #1 msgfmt_parse_message() example 
<?phpExample #2 OO example 
<?php위 예제의 출력: array ( 0 => 4560, 1 => 123, 2 => 37.073, ) array ( 0 => 4560, 1 => 123, 2 => 37.073, ) 참고
 
  |