PHP code example of wenhainan / think-token

1. Go to this page and download the library: Download wenhainan/think-token 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/ */

    

wenhainan / think-token example snippets


        use think\wenhainan\Token;
        use think\wenhainan\tool\Random;
        //例如 生成一个随机token字符串  这个是自带的一个工具 
        $token = Random::build('alpha',50);
        //设置信息
        $uid = 15;  //用户uid
        $expire_time = 60*30; //过期时间
        Token::set($token,$uid,$expire_time);
        //获取信息  过期了则为空,没过期可以获取到信息
        $info = Token::get($token);


/**
 * auther by wenhainan
 * email  [email protected]
 * QQ     610176732
 * nickname  阿修罗
 */
// +----------------------------------------------------------------------
// | Token设置 这个不能删除
// +----------------------------------------------------------------------
return [
    // 驱动方式 Mysql redis
    'type'     => 'redis',
    // 缓存前缀  这个可以自定义
    'key'      => '5LiH5LqL5aaC5oSP',
    // 加密方式  如果你不懂这个不要修改,保持默认即可
    'hashalgo' => 'ripemd160',
    //启用redis token必填 用于连接redis
    'redis'=>[
        'host'        => '127.0.0.1',
        'port'        => 6379,
        'password'    => '',
        'select'      => 0,
        'timeout'     => 0,
        'persistent'  => false,
        'userprefix'  => 'up:',
        'tokenprefix' => 'tp:',
    ],
    // 启用mysql token必填 用于连接mysql
    'mysql'=>[
        //token存储表
        'table'      => 'user_token',
        //如果是用系统的数据库,默认不用填,保持注释状态即可
        //'connection' => [],
    ]
];