How do I get the list online users in Yii2 application? I use membership, and want to get list of online users to show to admin in control panel.
Is there any way to get the list of ALL logged-in users ?
Thanks! Best regards
It's not easy because of the nature of PHP (stateless). You need to store the list of such users and keep it up to date.
I use the following approach:
Of course this is just an approximation:
If you want more precise results more sophisticated methods are needed.