當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sfToolkit::I18N_toEncoding方法代碼示例

本文整理匯總了PHP中sfToolkit::I18N_toEncoding方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfToolkit::I18N_toEncoding方法的具體用法?PHP sfToolkit::I18N_toEncoding怎麽用?PHP sfToolkit::I18N_toEncoding使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sfToolkit的用法示例。


在下文中一共展示了sfToolkit::I18N_toEncoding方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: format

 /**
  * Formats the string
  * 
  * @param   string  $key        Key to translate
  * @param   array   $args       A list of string to substitute [optional]
  * @param   string  $catalogue  Dictionary name [optional]
  * @param   string  $charset    Input AND output charset [optional]
  * @return  string  Translated string
  */
 public function format($key, $args = array(), $catalogue = null, $charset = null)
 {
     if ($catalogue === 'null') {
         return $key;
     }
     if (!$this->transcode) {
         return $this->formatString($key, $args, $catalogue);
     }
     if (empty($charset)) {
         $charset = $this->getCharset();
     }
     $s = $this->formatString(sfToolkit::I18N_toUTF8($key, $charset), $args, $catalogue);
     return sfToolkit::I18N_toEncoding($s, $charset);
 }
開發者ID:relo-san,項目名稱:dinLanguagePlugin,代碼行數:23,代碼來源:dinMessageFormat.class.php

示例2: format

 /**
  * Formats the string. That is, for a particular string find
  * the corresponding translation. Variable subsitution is performed
  * for the $args parameter. A different catalogue can be specified
  * using the $catalogue parameter.
  * The output charset is determined by $this->getCharset();
  *
  * @param string  $string     the string to translate.
  * @param array   $args       a list of string to substitute.
  * @param string  $catalogue  get the translation from a particular message
  * @param string  $charset    charset, the input AND output charset catalogue.
  * @return string translated string.
  */
 public function format($string, $args = array(), $catalogue = null, $charset = null)
 {
     // make sure that objects with __toString() are converted to strings
     $string = (string) $string;
     if (empty($charset)) {
         $charset = $this->getCharset();
     }
     $s = $this->formatString(sfToolkit::I18N_toUTF8($string, $charset), $args, $catalogue);
     return sfToolkit::I18N_toEncoding($s, $charset);
 }
開發者ID:sensorsix,項目名稱:app,代碼行數:23,代碼來源:sfMessageFormat.class.php

示例3: format

 /**
  * Formats the number for a certain pattern. The valid patterns are
  * 'c', 'd', 'e', 'p' or a custom pattern, such as "#.000" for
  * 3 decimal places.
  *
  * @param mixed   $number   the number to format.
  * @param string  $pattern  the format pattern, either, 'c', 'd', 'e', 'p'
  * or a custom pattern. E.g. "#.000" will format the number to 
  * 3 decimal places.
  * @param string  $currency 3-letter ISO 4217 code. For example, the code 
  * "USD" represents the US Dollar and "EUR" represents the Euro currency.
  * @param string  $charset  The charset
  * @return string formatted number string 
  */
 function format($number, $pattern = 'd', $currency = 'USD', $charset = 'UTF-8')
 {
     $this->setPattern($pattern);
     if (strtolower($pattern) == 'p') {
         $number = $number * 100;
     }
     // avoid conversion with exponents
     // see http://trac.symfony-project.org/ticket/5715
     $precision = ini_set('precision', 14);
     $string = $this->fixFloat($number);
     ini_set('precision', $precision);
     $decimal = $this->formatDecimal($string);
     $integer = $this->formatInteger($this->fixFloat(abs($number)));
     $result = strlen($decimal) > 0 ? $integer . $decimal : $integer;
     // get the suffix
     if ($number >= 0) {
         $suffix = $this->formatInfo->PositivePattern;
     } else {
         if ($number < 0) {
             $suffix = $this->formatInfo->NegativePattern;
         } else {
             $suffix = array('', '');
         }
     }
     // append and prepend suffix
     $result = $suffix[0] . $result . $suffix[1];
     // replace currency sign
     $symbol = @$this->formatInfo->getCurrencySymbol($currency);
     if (null === $symbol) {
         $symbol = $currency;
     }
     $result = str_replace('¤', $symbol, $result);
     return sfToolkit::I18N_toEncoding($result, $charset);
 }
開發者ID:bigcalm,項目名稱:urlcatcher,代碼行數:48,代碼來源:sfNumberFormat.class.php

示例4: format

 /**
  * Formats the string. That is, for a particular string find
  * the corresponding translation. Variable subsitution is performed
  * for the $args parameter. A different catalogue can be specified
  * using the $catalogue parameter.
  * The output charset is determined by $this->getCharset();
  *
  * @param string  $string     the string to translate.
  * @param array   $args       a list of string to substitute.
  * @param string  $catalogue  get the translation from a particular message
  * @param string  $charset    charset, the input AND output charset catalogue.
  * @return string translated string.
  */
 public function format($string, $args = array(), $catalogue = null, $charset = null)
 {
     if (empty($charset)) {
         $charset = $this->getCharset();
     }
     $s = $this->formatString(sfToolkit::I18N_toUTF8($string, $charset), $args, $catalogue);
     return sfToolkit::I18N_toEncoding($s, $charset);
 }
開發者ID:WIZARDISHUNGRY,項目名稱:symfony,代碼行數:21,代碼來源:sfMessageFormat.class.php

示例5: format

 /**
  * Formats a date according to the pattern.
  *
  * @param mixed   $time           the time as integer or string in strtotime format.
  * @param string  $pattern        the pattern
  * @param string  $inputPattern   the input pattern
  * @param string  $charset        the charset
  * @return string formatted date time. 
  */
 public function format($time, $pattern = 'F', $inputPattern = null, $charset = 'UTF-8')
 {
     $date = $this->getDate($time, $inputPattern);
     if (null === $pattern) {
         $pattern = 'F';
     }
     $pattern = $this->getPattern($pattern);
     $tokens = $this->getTokens($pattern);
     for ($i = 0, $max = count($tokens); $i < $max; $i++) {
         $pattern = $tokens[$i];
         if ($pattern[0] == "'" && $pattern[strlen($pattern) - 1] == "'") {
             $tokens[$i] = str_replace('``````', '\'', preg_replace('/(^\')|(\'$)/', '', $pattern));
         } else {
             if ($pattern == '``````') {
                 $tokens[$i] = '\'';
             } else {
                 $function = ucfirst($this->getFunctionName($pattern));
                 if ($function != null) {
                     $fName = 'get' . $function;
                     if (in_array($fName, $this->methods)) {
                         $tokens[$i] = $this->{$fName}($date, $pattern);
                     } else {
                         throw new sfException(sprintf('Function %s not found.', $function));
                     }
                 }
             }
         }
     }
     return sfToolkit::I18N_toEncoding(implode('', $tokens), $charset);
 }
開發者ID:mmonguilod,項目名稱:symfony1,代碼行數:39,代碼來源:sfDateFormat.class.php

示例6: format

 /**
  * Formats the number for a certain pattern. The valid patterns are
  * 'c', 'd', 'e', 'p' or a custom pattern, such as "#.000" for
  * 3 decimal places.
  *
  * @param mixed   $number   the number to format.
  * @param string  $pattern  the format pattern, either, 'c', 'd', 'e', 'p'
  * or a custom pattern. E.g. "#.000" will format the number to 
  * 3 decimal places.
  * @param string  $currency 3-letter ISO 4217 code. For example, the code 
  * "USD" represents the US Dollar and "EUR" represents the Euro currency.
  * @param string  $charset  The charset
  * @return string formatted number string 
  */
 function format($number, $pattern = 'd', $currency = 'USD', $charset = 'UTF-8')
 {
     $this->setPattern($pattern);
     if (strtolower($pattern) == 'p') {
         $number = $number * 100;
     }
     $string = (string) $number;
     $decimal = $this->formatDecimal($string);
     $integer = $this->formatInteger(abs($number));
     $result = strlen($decimal) > 0 ? $integer . $decimal : $integer;
     // get the suffix
     if ($number >= 0) {
         $suffix = $this->formatInfo->PositivePattern;
     } else {
         if ($number < 0) {
             $suffix = $this->formatInfo->NegativePattern;
         } else {
             $suffix = array('', '');
         }
     }
     // append and prepend suffix
     $result = $suffix[0] . $result . $suffix[1];
     // replace currency sign
     $symbol = @$this->formatInfo->getCurrencySymbol($currency);
     if (is_null($symbol)) {
         $symbol = $currency;
     }
     $result = str_replace('¤', $symbol, $result);
     return sfToolkit::I18N_toEncoding($result, $charset);
 }
開發者ID:WIZARDISHUNGRY,項目名稱:symfony,代碼行數:44,代碼來源:sfNumberFormat.class.php


注:本文中的sfToolkit::I18N_toEncoding方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。