PHP code example of thinksvip / xc-auth

1. Go to this page and download the library: Download thinksvip/xc-auth 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/ */

    

thinksvip / xc-auth example snippets


// 检测是否登陆
\Xc\Auth\XcAuth::login()->isLogin();
// 获取所有用户
\Xc\Auth\XcAuth::user()->getAllUsers();
// 获取数据权限
\Xc\Auth\XcAuth::perm()->data->get();

return [
    'jwt' => [
        'key' => '',// 密钥
        'alg' => '',// 加密方式
        'iss' => '',// 签发者,可选
        'aud' => '',// 接收方,可选
        'leeway' => 'int类型(单位:s)',// 留余时间
        'type' => 'int类型',// 类型,固定值
    ],
];