客户站点http://carfa.hk79.2ifree.com
原来的程序直接取整了,现在做下面修改。
首先打开文件
/carfa/web/includes/lib_common.php
第一步:在1028行找到
if ($change_price && defined('ECS_ADMIN') === false)
改成
if (0 && $change_price && defined('ECS_ADMIN') === false)
第二步:然后在1059行找到
$price = number_format($price, 2, '.', '');
改成
$price = number_format($price, 4, '.', '');