function get_user_id()
{
    global $cookie;
    $userid = NULL;

    if (isset($cookie->id_customer))
    {
        $userid = $cookie->id_customer;
    }

    return $userid;
}


为什么即使登录,用户ID仍返回null?

最佳答案

如果使用Prestashop 1.5,请使用Context对象:

$this->context->customer->id;


要么

Context::getContext()->customer->id


如果没有从父类继承的上下文。

关于prestashop - 获取用户ID Prestashop,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10706469/

10-12 12:17