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


PHP Money::currency方法代码示例

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


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

示例1: addMoney

 public function addMoney(Money $m)
 {
     if ($this->currency() == $m->currency()) {
         return new Money($this->amount() + $m->amount(), $this->currency());
     }
     return MoneyBag::create($this, $m);
 }
开发者ID:dalinhuang,项目名称:shopexts,代码行数:7,代码来源:Money.php

示例2: isSameCurrency

 /**
  * @param Money $money
  * @return bool
  */
 private function isSameCurrency(Money $money)
 {
     return $this->currency()->equals($money->currency());
 }
开发者ID:kanunak,项目名称:money,代码行数:8,代码来源:Money.php

示例3: contains

 private function contains(Money $m)
 {
     $found = $this->findMoney($m->currency());
     if ($found == NULL) {
         return FALSE;
     }
     return $found->amount() == $m->amount();
 }
开发者ID:453111208,项目名称:bbc,代码行数:8,代码来源:MoneyBag.php

示例4: equals

 public function equals(Money $money) : bool
 {
     return $this->currency->equals($money->currency()) && $this->amount === $money->amount();
 }
开发者ID:mihaeu,项目名称:PW-SimpleShop,代码行数:4,代码来源:Money.php

示例5: convert

 public function convert(Money $m, $to_currency, $round = 'down')
 {
     $factor = $this->get_factor($m->currency(), $to_currency);
     if ($factor === null) {
         throw new MoneyConversionException("no conversion for {$m->currency()} -> {$to_currency}");
     }
     $units = Money::round($m->units() * $factor, $round);
     return new Money($units, $to_currency);
 }
开发者ID:jaz303,项目名称:base-php,代码行数:9,代码来源:money.php

示例6: isLessThan

 public function isLessThan(Money $money) : bool
 {
     $this->ensureCurrenciesMatch($this->currency, $money->currency());
     return $this->amount < $money->amount();
 }
开发者ID:prikril,项目名称:pw-online-auction,代码行数:5,代码来源:Money.php


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