当前位置: 首页>>代码示例>>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;未经允许,请勿转载。