当前位置:首页 > CMS教程 > ecshop > 列表

ecshop在提交订单的时候报错:Warning: number_format() expects paramete

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-18 09:35:27 浏览: 评论:0 

客户在ecshop提交订单的时候报错LWarning: number_format() expects parameter 1 to be double, string given in…

出现这样的原因是配送插件里面的免费额度为0,导致了$price的值为空值,直接调用number_format出现了错误.

ECSHOP开发中心介绍下修改方法:打开includes\lib_common.php  搜索number_format 找到最下面的,将includes\lib_common.php:

  1. else 
  2.     { 
  3.         $price = number_format($price, 2, '.', ”); 
  4.     } 
  5. //修改为 
  6.   else 
  7.     { 
  8.         if(!$price){ 
  9.                 $price = 0; 
  10.         }//开源软件:phpfensi.com 
  11.         $price = number_format($price, 2, '.', ”); 
  12.     }

Tags: ecshop提交订单 Warning:number

分享到: