TwistPHP Documentation

createSessionKey

File path: dist/twist/Core/Models/User/SessionHandler.model.php
Namespace: Twist\Core\Models\User
Extends:

createSessionKey

Parameters

Name Type Description
$intUserIDintegern/a
[$blRemember = false]booleann/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$intUserID 124;
$blRemember false;

//Call the function createSessionKey with the example vars
$resSessionHandler = new \Twist\Core\Models\User\SessionHandler();
$resSessionHandler -> createSessionKey($intUserID$blRemember);