ectouch提交的订单,订单添加时间与实际时间相差8小时
客户使用的ectouch作为商城手机端。发现手机端提交的订单与实际时间相差8个小时。
查找:
mobile/include/apps/default/controller/FlowController.class.php
public function done() 函数中
默认:
'add_time' => gmtime()
gm是国际标准时间,与本地时间相差8个小时,所以出现了上述错误
修改方法为:将gmtime()修改为 time()
'add_time' => time()
下一篇 >>