HOME


Mini Shell 1.0
DIR: /home/cardxfeb/www/vendor/gerardojbaez/money/src/
Upload File :
Current File : //home/cardxfeb/www/vendor/gerardojbaez/money/src/helpers.php
<?php

if (! function_exists('moneyFormat')) {
/**
     * Format number to a particular currency.
     *
     * @param float Amount to format
     * @param string Currency
     * @return string
     */
    function moneyFormat($amount, $currency)
    {
        $money = new Gerardojbaez\Money\Money($amount, $currency);

        return $money->format();
    }
}