Laravel 요청 유형 가 져 오기

요청 형식 을 가 져 오고 설명 형식의 문자열 을 되 돌려 줍 니 다.
$request_method = $request->getMethod();

요청 이 어떤 유형 인지 판단 하고 불 값 을 되 돌려 줍 니 다.
//       ajax,
$is_ajax= $request->isMethod('ajax');
//       get
$is_get= $request->isMethod('get');
//       post
$is_post= $request->isMethod('post');

좋은 웹페이지 즐겨찾기