setkyar / moneyformat
Format your money
dev-master
2015-03-06 05:17 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is auto-updated.
Last update: 2024-11-11 14:57:59 UTC
README
You want to format your money? Let's format with simply way :)
Installation
Create composer.json
and add the following
{
"require" : {
"setkyar/moneyformat" : "dev-master"
}
}
And run $ composer install
via your terminal
Usage
Create new php file and add the following
<?php
// Display Errors On
ini_set('display_errors', 'On');
$autoload = __DIR__.'/vendor/autoload.php';
if ( ! file_exists($autoload))
{
exit("Need to run \"composer install\"!");
}
require $autoload;
use SetKyar\MoneyFormat\MoneyFormat;
$currency = new MoneyFormat;
var_dump($currency->Format(2000, 'Kyats')); //string(11) "Kyats 2,000"
var_dump($currency->Format(2000, 'USD')); //string(11) "USD 2,000"
Todo
- Write Test
Contributing
- Fork it ( https://github.com/setkyar/phpmoneyformat )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Stars to both Packagist and Here are welcome 😄
License
WTFPL