我使用以下代码尝试获取prestashop中的当前用户ID。
我将此代码放在模块目录中的另一个php文件中,并通过模块文件调用它。
$id = $this->context->customer->id_customer;
但它对我不起作用..正在使用prestashop 1.5 ..
最佳答案
我当然也无法在测试中使用它。但是,您可以尝试
$id = (int)$this->context->cookie->id_customer;
这对我有用。我完全不确定这是否是最好的方法。
关于prestashop - 如何获取Prestashop当前用户ID?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16231440/