我在Prestashop中有模块,我需要当前的客户ID。 这是模块php文件中的代码:
$userid =(int)$this->context->customer->id;
$this->context->smarty->assign('userid',$userid);
我将此变量用作自定义链接的参数。 这项工作很好,但每次都获得相同的ID。我的意思是......对于不同的用户。 这可能是什么原因?
答案 0 :(得分:0)
您应该尝试:
$id = (int)$this->context->cookie->id_customer;