Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zhuchunshu/php-csrf

php-csrf
https://github.com/zhuchunshu/php-csrf

Last synced: about 2 months ago
JSON representation

php-csrf

Awesome Lists containing this project

README

        

## php-csrf
### 获取取当前 CSRF Token的值
```php
// $time为token有效期
return csrf_token($time=120);
// or
return \Csrf\Csrf::get($time);
```
### 验证Csrf-token
```php
return \Csrf\Csrf::check($token);
```