xF2 Get user_id of visitor

  • Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Radio

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,503
    7,742
    321
    localhost
    Heisenberg submitted a new resource:

    - Get user_id of visitor

    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 = $visitor['user_id'];

    Once the user_id is known then the $user information is available.

    Code:
    $finder = \XF::finder('XF:User');
    $user = $finder->where('user_id', 1)->fetchOne();
    
    \XF::dump($user);