PHP 将数字转换为非标准格式
我正在开发一款游戏,并将金额存储为单个数字,而不是金、银和铜。
例如 PlayerX 有 123 金、45 银和 67 铜 在本例中,数据库条目将存储 1234567 作为货币值。 100铜=1银,100银=1金
有没有一种简单的方法可以将长数轻松转换为金银铜值?
I have a game I am working on and am storing the amount of money as a single number instead of pieces of gold, silver and copper.
E.g PlayerX has 123 gold, 45 silver and 67 copper
In this instance the database entry would store 1234567 as the money value. 100 copper = 1 silver and 100 silver = 1 gold
Is there an easy way to convert the long number into gold, silver and copper values easily?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 模运算符
%
:Use the modulus operator
%
: