本文整理汇总了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));
}
示例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);
}
示例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);
}