thinkphp5.0.19 表单令牌

时间:2024-12-02 13:05:32

助手函数token() [F:\phpStudy\WWW\csweb\thinkphp\helper.php]

thinkphp5.0.19 表单令牌

request类token()方法 [F:\phpStudy\WWW\csweb\thinkphp\library\think\Request.php]

thinkphp5.0.19 表单令牌

token生成函数可以自定义:

定义全局函数:

 function token_fun($p){
return "token_".$p;
}

调用:

 <?php
namespace app\index\controller;
class Test extends BasicAdmin
{
public function index()
{
var_dump(request()->token('__token__', 'token_fun'));
//return $this->_view_fetch("/test/index");
}
}

显示:

thinkphp5.0.19 表单令牌

ajax请求时调用token()会将token附加到response header中:

thinkphp5.0.19 表单令牌