I am creating a webcam system to go on my phpFox site and am attempting to get the current user's ID. I've tried the following, but to no avail.
ob_start();
session_start();
function get_user_id() {
$userid = null;
$id = Phpfox::getUserBy('user_id');
if (!empty($id)) {
$userid = $id;
}
return $userid;
}
$idd = get_user_id();
echo("User ID: " . $idd);
How would I get the user ID of the current user?
On module, you can use:
$iUserId = Phpfox::getUserId();
On App, you can use:
$iUserId = user()->id;