Resource icon

XF 2 Tip Get user_id of visitor

Compatible XF Versions
2.x
In XenForo 1, getting the user_id involved the getInstance and getUserId methods.
Code:
$user_id =XenForo_Visitor::getInstance()->getUserId();
In XenForo 2, it's a matter of using visitor().
Code:
$visitor = \XF::visitor();

$user_id =...
You do not have permission to view the full content of this resource. Log in or register now.
  • Angry
  • Like
Reactions: jim and NulledxBB
Author
ENXF NET
Views
1,399
Last update
Rating
0.00 star(s) 0 ratings

More resources from ENXF NET

Top