在 MySQL 中,我有:
每一天的利息 - 0.00076931506849315
但是当我使用:
$variable = $this->InterestRate->find('all', array('InterestRate.interest_type_id' => $interest_type_id));
在我的 $variable interest_per_day 中是:0.000769315
如何从 DB 中操作我想要的小数位数?我应该将它转换为数据库中的 VARCHAR 吗?用小数计算时PHP应该丢失小数吗?
这是 CakePHP 2.2。
谢谢你。:)