Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
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

up vote 299 down vote accepted

By using

$_SERVER['REQUEST_METHOD']

For more details please see the documentation for the $_SERVER variable.

share|improve this answer
39  
+1 to that - when in doubt, var_dump($_SERVER) and the answer often lies within. – Paul Dixon Dec 11 '08 at 11:35
9  
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
5  
What happens if you POST to mypage.php?var=something ? – nickf Dec 11 '08 at 12:21
2  
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
7  
@NathanLong In my experience that is incorrect. If you POST to mypage.php?var=something then 'something' will be in $_GET['var']. – David Gallagher Feb 7 '12 at 4:51
show 6 more comments

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 = explode("/", 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;
}
?>
share|improve this answer
10  
If you want to have your API available, without quoting what interpreting engine you're using, add a .htaccess file containing RewriteEngine on RewriteRule ^api/(.*)$ api.php/$1 This assumes your API file is called api.php. Also, since the above code block was written, the PHP developers have depreciated the split function. it works fine if you replace split with explode. – JonTheNiceGuy Jul 1 '10 at 11:55
What's with the @ in front of $_SERVER['PATH_INFO']? – Svish Apr 19 at 10:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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