PHP:如何通过PUT方法提交“JSON”?

时间:2016-07-19 07:05:15

标签: php json apache http-headers put

我正在制作(并测试)我的小型PHP API。在将JSON作为数据类型提交时,两种GET / POST方法都很好。

PUT中的问题

  • 我无法通过JSON方法提交PUT数据。当我这样做时,服务器端获得了空数据。
  • 但是当我不使用json作为数据类型(并且只使用纯文本数据)时,我可以成功接收和解析数据。 < ----((这很奇怪!))

以下是我的测试案例。

客户端(提交)

(通过PHP提交)submit.php:

$data = array("fruit"=>"watermelon", "destination"=>"germany");
$data = json_encode($data);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/api.php");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json','Content-Length: ' . strlen($data)));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$respond = curl_exec($ch);
curl_close($ch);
print_r($respond);

(通过邮递员提交):

enter image description here

服务器端(接收/解析)

api.php:

$decoded_input = json_decode(file_get_contents("php://input"), true);
parse_str($decoded_input, $putdata);

header('Content-type: application/json');
echo json_encode( $putdata );

输出

[]

问题

因此,似乎在服务器端接收/解析是问题

  • 如何通过PUT方法提交JSON数据类型?
  • 我的服务器端(Apache + PHP)中是否有一些设置可以json方法启用(允许)PUT数据类型?

**我无法通过PUT方法获得JSON。谢谢大家的帮助。

2 个答案:

答案 0 :(得分:1)

<?php
$decoded_input = json_decode(file_get_contents("php://input"), true);

//Here you have usual php array stored in $decoded_input. Do some stuff with it.

header('Content-type: application/json');
echo json_encode($decoded_input);

enter image description here

答案 1 :(得分:0)

对不起,无法评论,Rep为低。

几周前我也玩过简单的API调用,并且我有一些功能来处理它们。

public function callAPI($method, $url, $data = false) {

    $ch = curl_init ();

    switch ($method) {
        case "POST" :
            curl_setopt ( $ch, CURLOPT_POST, 1 );

            if ($data) {
                curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
                curl_setopt ( $ch, CURLOPT_HTTPHEADER, array (
                    'Content-Type: application/json',
                    'Content-Length: ' . strlen ( $data ) 
                ));
            }
            break;
        case "PUT" :
            curl_setopt ( $ch, CURLOPT_PUT, 1 );
            break;
        case "GET" :
            //No settings required
        break;
    }

    curl_setopt ( $ch, CURLOPT_URL, $url );
    curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );

    $responde = curl_exec ( $ch );

    curl_close ( $ch );

    return $responde;
}

似乎PUT

需要另一个设置

curl_setopt ( $ch, CURLOPT_PUT, 1 );

AFAIK您的选项curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");仅更改发送的字符串,而不是实际方法

Soruce:https://curl.haxx.se/libcurl/c/CURLOPT_CUSTOMREQUEST.html