当前位置: 首页>>代码示例>>PHP>>正文


PHP NumberFormatter::parseCurrency方法代码示例

本文整理汇总了PHP中NumberFormatter::parseCurrency方法的典型用法代码示例。如果您正苦于以下问题:PHP NumberFormatter::parseCurrency方法的具体用法?PHP NumberFormatter::parseCurrency怎么用?PHP NumberFormatter::parseCurrency使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NumberFormatter的用法示例。


在下文中一共展示了NumberFormatter::parseCurrency方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: parse

 /**
  * {@inheritdoc}
  */
 public function parse($money, $forceCurrency = null)
 {
     $decimal = $this->formatter->parseCurrency($money, $currency);
     if ($decimal === false) {
         throw new ParserException('Cannot parse ' . $money . ' to Money. ' . $this->formatter->getErrorMessage());
     }
     $decimal = (string) $decimal;
     if (strpos($decimal, '.') !== false) {
         $decimal = str_replace('.', '', $decimal);
     } else {
         $decimal .= str_pad('', $this->formatter->getAttribute(\NumberFormatter::FRACTION_DIGITS), '0');
     }
     if (substr($decimal, 0, 1) === '-') {
         $decimal = '-' . ltrim(substr($decimal, 1), '0');
     } else {
         $decimal = ltrim($decimal, '0');
     }
     if ($forceCurrency === null) {
         $forceCurrency = $currency;
     }
     return new Money($decimal, new Currency($forceCurrency));
 }
开发者ID:barryvdh,项目名称:money,代码行数:25,代码来源:IntlMoneyParser.php

示例2: parse

 /**
  * {@inheritdoc}
  */
 public function parse($money, $forceCurrency = null)
 {
     if (!is_string($money)) {
         throw new ParserException('Formatted raw money should be string, e.g. $1.00');
     }
     $currencyCode = null;
     $decimal = $this->formatter->parseCurrency($money, $currencyCode);
     if (null !== $forceCurrency) {
         $currencyCode = $forceCurrency;
     }
     $currency = new Currency($currencyCode);
     if (false === $decimal) {
         throw new ParserException('Cannot parse ' . $money . ' to Money. ' . $this->formatter->getErrorMessage());
     }
     $decimal = (string) $decimal;
     $subunit = $this->currencies->subunitFor($currency);
     $decimalPosition = strpos($decimal, '.');
     if (false !== $decimalPosition) {
         $decimalLength = strlen($decimal);
         $fractionDigits = $decimalLength - $decimalPosition - 1;
         $decimal = str_replace('.', '', $decimal);
         $decimal = Number::roundMoneyValue($decimal, $subunit, $fractionDigits);
         if ($fractionDigits > $subunit) {
             $decimal = substr($decimal, 0, $decimalPosition + $subunit);
         } elseif ($fractionDigits < $subunit) {
             $decimal .= str_pad('', $subunit - $fractionDigits, '0');
         }
     } else {
         $decimal .= str_pad('', $subunit, '0');
     }
     if ('-' === $decimal[0]) {
         $decimal = '-' . ltrim(substr($decimal, 1), '0');
     } else {
         $decimal = ltrim($decimal, '0');
     }
     return new Money($decimal, $currency);
 }
开发者ID:squigg,项目名称:money,代码行数:40,代码来源:IntlMoneyParser.php

示例3: convert

 /**
  * Converte un valore da $this->format in numero senza il simbolo della valuta
  *
  * @param $number
  * @param null $currency
  * @return bool|float|string
  */
 public function convert($number, $currency = NULL)
 {
     is_null($currency) ? $currency = 'EUR' : NULL;
     $nft = new NF($this->locale, NF::CURRENCY);
     return $nft->parseCurrency($number, $currency);
 }
开发者ID:beggiatom,项目名称:L5Intl,代码行数:13,代码来源:Currency.php


注:本文中的NumberFormatter::parseCurrency方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。