标签: opencart opencart-3
我在管理方面发展。我需要找到user_id。代码
$this->user->getId()
没有提供任何信息。有没有办法获得用户ID。 感谢。
答案 0 :(得分:0)
这是最好的方法:
You cannot directly access user_id from database since it is protected.
所以你必须从会话中访问它。
$this->session->data['user_id'];
返回当前登录用户的ID。