jonathanza / monetary

Useful tool for formatting and converting currencies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Monetary

Useful tool for formatting and converting currencies in PHP

Build Status Latest Stable Version


The main features are:

  • formatting an amount in a certain currency;
  • converting an amount from one currency to another.

The Monetary library takes care of fetching exchange rates from remote services and caching them.

You can easily use your own exchange rates source or cache solution.

Installation

Install via Composer

composer require openbuildings/monetary

Basic Usage

Use the namespace:

use OpenBuildings\Monetary\Monetary;

then just convert and format currencies:

echo Monetary::instance()->convert(10, 'USD', 'GBP');
// 7.5091987684914

echo Monetary::instance()->format(15.3, 'GBP');
// £15.30

About

Useful tool for formatting and converting currencies

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:PHP 100.0%