PHP5.3以上问题请教,配送方式问题!

2016-07-07 15:12 来源:www.chinab4c.com 作者:ecshop专家

Warning: number_format() expects parameter 1 to be double, string given in /webbaidu.com/includes/lib_common.php on line 963 Warning: number_format() expects parameter 1 to be double, string given in /web/baidu/includes/lib_common.php on line 963 Warning: number_format() expects parameter 1 to be double, string given in /web/baidu.com/includes/lib_common.php on line 963

php版本是5.3.8 在修改配送方式的时候后台出现上述错误,按照论坛达人的修改方案,将963行修改为
else
{
if(!$price){
$price = 0;
}
$price = number_format($price, 2, '.', '');
}
return sprintf($GLOBALS['_CFG']['currency_format'], $price);
}

但是问题依旧,网上寻找解决方法,所有的解决方法都是如出一辙,无奈,重新安装了一次ecshop,面临问题一样!
请官方或者技术达人解惑!感谢!