PHP에서 요청 유형 감지 (GET, POST, PUT 또는 DELETE)
PHP에서 사용 된 요청 유형 (GET, POST, PUT 또는 DELETE)을 어떻게 감지 할 수 있습니까?
사용하여
$_SERVER['REQUEST_METHOD']
예
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// The request is using the POST method
}
자세한 내용 은 $ _SERVER 변수에 대한 설명서 를 참조하십시오 .
PHP의 REST는 매우 간단하게 수행 할 수 있습니다. http://example.com/test.php (아래에 설명)를 만듭니다 . REST 호출에 사용하십시오 (예 : http://example.com/test.php/testing/123/hello) . 이것은 Apache 및 Lighttpd와 함께 작동하며 재 작성 규칙이 필요하지 않습니다.
<?php
$method = $_SERVER['REQUEST_METHOD'];
$request = explode("/", substr(@$_SERVER['PATH_INFO'], 1));
switch ($method) {
case 'PUT':
do_something_with_put($request);
break;
case 'POST':
do_something_with_post($request);
break;
case 'GET':
do_something_with_get($request);
break;
default:
handle_error($request);
break;
}
REQUEST METHOD
다음 코드 스 니펫을 사용하여 HTTP 메소드를 감지하거나 호출 할 수 있습니다.
$method = $_SERVER['REQUEST_METHOD']
if ($method == 'POST') {
// Method is POST
} elseif ($method == 'GET') {
// Method is GET
} elseif ($method == 'PUT') {
// Method is PUT
} elseif ($method == 'DELETE') {
// Method is DELETE
} else {
// Method unknown
}
문 switch
보다 선호 하는 경우 a를 사용하여 수행 할 수도 있습니다 if-else
.
html 양식에서 GET
또는 이외의 방법 POST
이 필요한 경우 양식의 숨겨진 필드를 사용하여 종종 해결됩니다.
<!-- DELETE method -->
<form action='' method='POST'>
<input type="hidden" name'_METHOD' value="DELETE">
</form>
<!-- PUT method -->
<form action='' method='POST'>
<input type="hidden" name'_METHOD' value="PUT">
</form>
HTTP 메서드에 대한 자세한 내용은 다음 StackOverflow 질문을 참조하고 싶습니다.
HTTP 프로토콜의 PUT 및 DELETE 및 PHP에서의 사용법
이것은 REST에 관한 것이므로 서버에서 요청 메소드를 얻는 것만으로는 충분하지 않습니다. RESTful 경로 매개 변수도 수신해야합니다. RESTful 매개 변수와 GET / POST / PUT 매개 변수를 분리하는 이유는 리소스가 식별을 위해 고유 한 URL을 가져야하기 때문입니다.
Slim을 사용하여 PHP에서 RESTful 경로를 구현하는 한 가지 방법은 다음과 같습니다.
https://github.com/codeguy/Slim
$app = new \Slim\Slim();
$app->get('/hello/:name', function ($name) {
echo "Hello, $name";
});
$app->run();
그에 따라 서버를 구성하십시오.
다음은 AltoRouter를 사용하는 또 다른 예입니다.
https://github.com/dannyvankooten/AltoRouter
$router = new AltoRouter();
$router->setBasePath('/AltoRouter'); // (optional) the subdir AltoRouter lives in
// mapping routes
$router->map('GET|POST','/', 'home#index', 'home');
$router->map('GET','/users', array('c' => 'UserController', 'a' => 'ListAction'));
$router->map('GET','/users/[i:id]', 'users#show', 'users_show');
$router->map('POST','/users/[i:id]/[delete|update:action]', 'usersController#doAction', 'users_do');
You can use getenv
function and don't have to work with a $_SERVER
variable:
getenv('REQUEST_METHOD');
More info:
http://php.net/manual/en/function.getenv.php
We can also use the input_filter to detect the request method while also providing security through input sanitation.
$request = filter_input(INPUT_SERVER, 'REQUEST_METHOD', FILTER_SANITIZE_ENCODED);
It is Very Simple just use $_SERVER['REQUEST_METHOD'];
Example:
<?php
$method = $_SERVER['REQUEST_METHOD'];
switch ($method) {
case 'GET':
//Here Handle GET Request
break;
case 'POST':
//Here Handle POST Request
break;
case 'DELETE':
//Here Handle DELETE Request
break;
case 'PUT':
//Here Handle PUT Request
break;
}
?>
$request = new \Zend\Http\PhpEnvironment\Request();
$httpMethod = $request->getMethod();
In this way you can also achieve in zend framework 2 also. Thanks.
In core php you can do like this :
<?php
$method = $_SERVER['REQUEST_METHOD'];
switch ($method) {
case 'GET':
//Here Handle GET Request
echo 'You are using '.$method.' Method';
break;
case 'POST':
//Here Handle POST Request
echo 'You are using '.$method.' Method';
break;
case 'PUT':
//Here Handle PUT Request
echo 'You are using '.$method.' Method';
break;
case 'PATCH':
//Here Handle PATCH Request
echo 'You are using '.$method.' Method';
break;
case 'DELETE':
//Here Handle DELETE Request
echo 'You are using '.$method.' Method';
break;
case 'COPY':
//Here Handle COPY Request
echo 'You are using '.$method.' Method';
break;
case 'OPTIONS':
//Here Handle OPTIONS Request
echo 'You are using '.$method.' Method';
break;
case 'LINK':
//Here Handle LINK Request
echo 'You are using '.$method.' Method';
break;
case 'UNLINK':
//Here Handle UNLINK Request
echo 'You are using '.$method.' Method';
break;
case 'PURGE':
//Here Handle PURGE Request
echo 'You are using '.$method.' Method';
break;
case 'LOCK':
//Here Handle LOCK Request
echo 'You are using '.$method.' Method';
break;
case 'UNLOCK':
//Here Handle UNLOCK Request
echo 'You are using '.$method.' Method';
break;
case 'PROPFIND':
//Here Handle PROPFIND Request
echo 'You are using '.$method.' Method';
break;
case 'VIEW':
//Here Handle VIEW Request
echo 'You are using '.$method.' Method';
break;
Default:
echo 'You are using '.$method.' Method';
break;
}
?>
When a method was requested, it will have an array
. So simply check with count()
.
$m=['GET'=>$_GET,'POST'=>$_POST];
foreach($m as$k=>$v){
echo count($v)?
$k.' was requested.':null;
}
I used this code. It should work.
function get_request_method() {
$request_method = strtolower($_SERVER['REQUEST_METHOD']);
if($request_method != 'get' && $request_method != 'post') {
return $request_method;
}
if($request_method == 'post' && isset($_POST['_method'])) {
return strtolower($_POST['_method']);
}
return $request_method;
}
This above code will work with REST calls
and will also work with html form
<form method="post">
<input name="_method" type="hidden" value="delete" />
<input type="submit" value="Submit">
</form>
You can get any query string data i.e www.example.com?id=2&name=r
You must get data using $_GET['id']
or $_REQUEST['id']
.
Post data means like form <form action='' method='POST'>
you must use $_POST
or $_REQUEST
.
참고URL : https://stackoverflow.com/questions/359047/detecting-request-type-in-php-get-post-put-or-delete
'development' 카테고리의 다른 글
Ruby에서`rescue Exception => e`가 왜 나쁜 스타일입니까? (0) | 2020.09.28 |
---|---|
JavaScript에서 올해 가져 오기 (0) | 2020.09.28 |
정적으로 입력되는 언어와 동적으로 입력되는 언어의 차이점은 무엇입니까? (0) | 2020.09.28 |
새 배열을 만들지 않고 기존 JavaScript 배열을 다른 배열로 확장하는 방법 (0) | 2020.09.28 |
jQuery AJAX 제출 양식 (0) | 2020.09.28 |