gpt4 book ai didi

prestashop - 获取用户 ID Prestashop

转载 作者:行者123 更新时间:2023-12-04 00:41:48 27 4
gpt4 key购买 nike

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

如果没有从父类继承context。

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

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com