PHP Classes

File: config/currency/formats.php

Recommend this page to a friend!
  Packages of Christos Drogidis   TCurrencyHandler   config/currency/formats.php   Download  
File: config/currency/formats.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: TCurrencyHandler
Retrieve details and format currency symbol values
Author: By
Last change:
Date: 1 month ago
Size: 1,245 bytes
 

Contents

Class file image Download
<?php

return [
   
'USD' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
   
'EUR' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
   
'GBP' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
   
'JPY' => ['decimals' => 0, 'decimal_sep' => '', 'thousand_sep' => ',', 'position' => 'before'],
   
'CNY' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
   
'CHF' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => '\'', 'position' => 'before'],
   
'BTC' => ['decimals' => 8, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
   
'ETH' => ['decimals' => 8, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
   
'TRY' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
   
'SEK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => ' ', 'position' => 'after'],
   
'NOK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => ' ', 'position' => 'after'],
   
'DKK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
];
?>