gpt4 book ai didi

php - 检查请求是 GET 还是 POST

转载 作者:IT王子 更新时间:2023-10-29 01:02:55 24 4
gpt4 key购买 nike

在我的 Controller / Action 中:

if(!empty($_POST))
{
if(Auth::attempt(Input::get('data')))
{
return Redirect::intended();
}
else
{
Session::flash('error_message','');
}
}

Laravel中是否有方法来检查请求是POST还是GET

最佳答案

根据 Laravels docs ,有一个 Request 方法来检查它,所以你可以这样做:

$method = Request::method();

if (Request::isMethod('post'))
{
//
}

关于php - 检查请求是 GET 还是 POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21064582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com