当我使用PHP从Postman发送数据时,put为null

时间:2019-05-16 22:33:17

标签: php rest api routes postman

我正在用PHP执行API REST。它适用于GET,DELETE和POST。但是,当我尝试执行PUT请求时,它返回null。

$requestMethod = $_SERVER["REQUEST_METHOD"];
switch($requestMethod) {    
    case 'PUT':
        header('Content-Type: application/json');
        echo json_encode($_PUT);
        break;
    default:
    header("HTTP/1.0 405 Method Not Allowed");
    break;
}

这是我的邮递员配置

enter image description here

我做错了什么?

0 个答案:

没有答案