UserSessionCount (function)

Last updated: Fri, May 26, 2023 10:12 am
Return to Knowledgebase

Purpose

The UserSessionCount function in UserSpice is used to retrieve the number of active user sessions for the currently logged-in user.

Location

users/helpers/us_helpers.php

Parameters

This function does not take any arguments

Returns

Data Type Description of Returned Data
int The number of active user sessions.

Further Documentation:

// Get the number of active user sessions
$sessionCount = UserSessionCount();

echo "Number of active user sessions: " . $sessionCount;



In the example above, the function is called to retrieve the number of active user sessions for the currently logged-in user. The returned value, sessionCount, represents the count of active user sessions. This count can be displayed or used in any way according to the specific requirements of your application.