フレームワークを使用せずに PHP で RESTful API を開発しようとしています。リクエストの処理中、これを使用してクライアント データを読み取ることはできません。parse_str(file_get_contents("php://input"), $put_vars);
完全なコードは次のとおりです。
public static function processRequest() {
//get the verb
$method = strtolower($_SERVER['REQUEST_METHOD']);
$request = new Request();
$data = array();
$put_vars = array();
switch ($method) {
case 'get':
$data = $_GET;
break;
case 'post':
$data = $_POST;
break;
case 'put':
parse_str(file_get_contents("php://input"), $put_vars);
$data = $put_vars;
echo $data;
break;
}
$request->setMethod($method);
$request->setRequestVars($data);
if (isset($data['data'])) {
$request->setData(json_decode($data));
echo 'data exists';
}
return $request;
}
APIを停止するためにcURLを使用しています。このコマンドを入力すると、次のコマンドcurl -i -X PUT -d '{"name":"a","data":"data1"}'
http://localhost/my-rest-api/api/
のみが返されます。
Array""
適切なデータが返されないのはなぜですか?
編集
また、API であるはずの別のコードをテストしましたが、file_get_contents('php://input', true)
それでも null を返します。Webサーバーに問題がある可能性がありますか?