PHP code example of birke / rememberme

1. Go to this page and download the library: Download birke/rememberme library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

birke / rememberme example snippets


$expire = strtotime("1 week", 0);
$cookie = new PHPCookie("REMEMBERME", $expire, "/", "", true, true);
$auth = new Authenticator($storage, null, $cookie);

 $tokenGenerator = new DefaultToken(94, DefaultToken::FORMAT_BASE64);
 $auth = new Authenticator($storage, $tokenGenerator);
 

 $auth = new Authenticator($storage);
 $auth->setCleanExpiredTokensOnLogin(true);