milax / mconsole-currency

此包最新版本(dev-master)没有提供许可证信息。

为Mconsole提供货币工具

dev-master 2017-03-27 01:02 UTC

This package is auto-updated.

Last update: 2024-09-07 18:22:28 UTC


README

演示数据

创建新的货币记录

INSERT INTO `mconsole_currencies` (`id`, `name`, `prefix`, `suffix`, `basic`, `decimals`, `delimiter`, `names`, `system`, `created_at`, `updated_at`) VALUES (1,'USA Dollar','$','',100,2,'.','["cent", "dollar"]',0,'2016-09-05 03:15:35','2016-09-05 03:15:38');

方法

format (int amount, bool withName)

返回格式化的货币数字

$currency->format(10050); // 100.50
$curremcy->format(10050, true) // $100.50