Answers:
通过使用
$_SERVER['REQUEST_METHOD']
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// The request is using the POST method
}
有关更多详细信息,请参见$ _SERVER变量的文档。
$_GET['var']
。
$_POST
并被$_GET
不幸地命名。$_GET
不管HTTP方法如何,都包含来自URL的查询组件的变量。$_POST
如果请求以形式发送,则将包含表单字段 application/x-www-form-urlencoded
。
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;
}
@
在眼前$_SERVER['PATH_INFO']
?
PHP Notice: Undefined index: PATH_INFO
万一PATH_INFO不存在,它会被删除$_SERVER
。我会立即将其添加到我的所有花样中!这是一种方式:“我知道在此数组中可能没有这样命名的条目,而我已经准备好了,所以就闭嘴做我告诉你的事情”。:)谢谢你们,既发布了这个答案,也引起了我对其中特定角色的关注。
<?php $request = explode("/", substr(@$_SERVER['PATH_INFO'], 1)); $rest = 'rest_'.strtolower($_SERVER['REQUEST_METHOD']); if (function_exists($rest)) call_user_func($rest, $request); ?>
REQUEST METHOD
使用以下代码段可以检测到HTTP方法或所谓的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
如果您更喜欢此if-else
语句,也可以使用a进行操作。
如果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问题:
我们还可以使用input_filter来检测请求方法,同时还可以通过输入卫生提供安全性。
$request = filter_input(INPUT_SERVER, 'REQUEST_METHOD', FILTER_SANITIZE_ENCODED);
由于这与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');
您可以使用getenv
函数,而不必使用$_SERVER
变量:
getenv('REQUEST_METHOD');
更多信息:
这很简单,只需使用$ _SERVER ['REQUEST_METHOD'];
例:
<?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;
}
?>
$_SERVER['REQUEST_METHOD']
甚至定制方法中。请记住,该方法只是请求标头中的字符串,这是我们检查其正确性的任务。
$request = new \Zend\Http\PhpEnvironment\Request();
$httpMethod = $request->getMethod();
这样,您还可以在zend framework 2中实现。谢谢。
在核心php中,您可以这样做:
<?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;
}
?>
当请求方法时,它将带有一个array
。因此,只需检查即可count()
。
$m=['GET'=>$_GET,'POST'=>$_POST];
foreach($m as$k=>$v){
echo count($v)?
$k.' was requested.':null;
}
我用了这段代码。它应该工作。
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;
}
上面的代码可以使用REST calls
,也可以使用html form
<form method="post">
<input name="_method" type="hidden" value="delete" />
<input type="submit" value="Submit">
</form>