vote up 10 vote down star
3

How can I detect which request type was used(GET, POST, PUT or DELETE) in php?

flag

don't forget HEAD =) (also OPTIONS, TRACE and CONNECT, but I don't think PHP ever gets those). – gnud Dec 12 '08 at 23:22

2 Answers

vote up 22 vote down check

By using

$_SERVER['REQUEST_METHOD']
link|flag
+1 to that - when in doubt, var_dump($_SERVER) and the answer often lies within. – Paul Dixon Dec 11 '08 at 11:35
True but a google search didn't turn up any results, and now within a day or two it will. ;) – Unkwntech Dec 11 '08 at 11:41
1  
What happens if you POST to mypage.php?var=something ? – nickf Dec 11 '08 at 12:21
1  
The method will be POST, but if you have to use $_GET to get those variables Im not sure. – OIS Dec 11 '08 at 12:50
In the case nickf mentions, you could also (maybe) use the $_REQUEST variable. $_REQUEST contains post, get, and cookie values. Read the documentation at php.net/manual/en/… – gnud Dec 11 '08 at 23:42
vote up 0 vote down

REST in PHP can be done pretty simple. Create http://example.com/test.php (outlined below). Use this for REST calls, e.g. http://example.com/test.php/testing/123/hello. This works with Apache and Lighttpd out of the box, and no rewrite rules are needed.

<?php
$method = $_SERVER['REQUEST_METHOD'];
$request = split("/", substr(@$_SERVER['PATH_INFO'], 1));

switch ($method) {
  case 'PUT':
    rest_put($request);  
    break;
  case 'POST':
    rest_post($request);  
    break;
  case 'GET':
    rest_get($request);  
    break;
  case 'HEAD':
    rest_head($request);  
    break;
  case 'DELETE':
    rest_delete($request);  
    break;
  case 'OPTIONS':
    rest_options($request);    
    break;
  default:
    rest_error($request);  
    break;
}
?>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.