php专区

 首页 > php专区 > PHP应用 > CMS建站 > ecshop在提交订单的时候报错:Warning: number_format

ecshop在提交订单的时候报错:Warning: number_format

分享到:
【字体:
导读:
          客户在ecshop提交订单的时候报错LWarning: number_format() expects parameter 1 to be double, string given in出现这样的原因是配送插件里面的免费额度为0,导致了$price的值为空值,......

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

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

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

ECSHOP开发中心介绍下修改方法:打开includeslib_common.php  搜索number_format 找到最下面的,将includeslib_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.     }
分享到:
ecshop收货地址去掉电话号码必填 - ecsho...
ecshop收货地址去掉电话号码必填 很多使用ecshop的朋友都反应说,ecshop里面有很多不必要的限制,比如如何去掉收货信息栏中的电话必填项呢?下面由ECSHOP开发中心的技术介绍下方法: 先找到js/shopping_flow.js文件,在js/shopping_flow.js中找到function checkConsignee(frm)函数,然后去除下面...
ecshop网站会员整合ucenter后导致wap注册...
ecshop网站会员整合ucenter后导致wap注册失败的解决办法 网站会员整合ucenter可以 实现多站点同步登录,但是很多客户反映整合完ucenter后,wap端无论怎么注册都提示用户名已存在了,这个问题怎么解决呢? 下面由phpfensi.com技术来为您解决这一问题: 整合过ucenter的用户应该知道,需要在网站根...
  •         php迷,一个php技术的分享社区,专属您自己的技术摘抄本、收藏夹。
  • 在这里……