文件操作 - Exchange.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/vendor/moneyphp/money/src/Exchange.php
编辑文件内容
<?php namespace Money; use Money\Exception\UnresolvableCurrencyPairException; /** * Provides a way to get exchange rate from a third-party source and return a currency pair. * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> */ interface Exchange { /** * Returns a currency pair for the passed currencies with the rate coming from a third-party source. * * @return CurrencyPair * * @throws UnresolvableCurrencyPairException When there is no currency pair (rate) available for the given currencies */ public function quote(Currency $baseCurrency, Currency $counterCurrency); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件