-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp-backbone.php
36 lines (35 loc) · 949 Bytes
/
php-backbone.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
// create $_PUT and $_DELETE globals
$_PUT = array();
$_DELETE = array();
$method = strtoupper($_SERVER['REQUEST_METHOD']);
if ( preg_match('/application\/json/i', $_SERVER['CONTENT_TYPE']) ) {
// if content is JSON, parse accordingly...
switch ( $method ) {
case "GET":
case "POST":
case "PUT":
case "DELETE":
$variable = "_".$method;
$$variable = json_decode(file_get_contents('php://input'), true);
break;
default:
// unsupported method, throw error?
}
} else {
// Standard parsing for HTML Forms (application/x-www-form-urlencoded)
switch ( $method ) {
case "GET":
case "POST":
// nothing to do, PHP parses normally
break;
case "PUT":
parse_str(file_get_contents('php://input'), $_PUT);
break;
case "DELETE":
parse_str(file_get_contents('php://input'), $_DELETE);
break;
default:
// unsupported method, throw error?
}
}