cURL JSON帖子不起作用,并且没有显示错误PHP 7

时间:2016-05-10 14:58:54

标签: php json curl php-7

我有一个奇怪的错误,其中我的PHP 7中的cURL脚本似乎不起作用,并且不会出错。我的代码:

$content = json_encode(array(
    'I was just testing',
    'Whether or not this is working',
        ));

$collatex_url = 'http://localhost:7369/collate';
$collatex_headers = array(
    "Content-type: application/json; charset=UTF-8;",
    "Content-Length: " . strlen($content),
    "Accept: application/json"
);

$curl = curl_init($collatex_url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $collatex_headers);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_VERBOSE, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, array('json' => $content));
//curl_setopt($curl, CURLOPT_POSTFIELDS, array('json=' . urlencode($content))); //tried, also does not work
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($curl);
echo curl_error($curl); //does not produce an error
echo 'THE RESULT IS' . $result; //the result is empty
curl_close($curl);
  • 我的Selinux设置为允许
  • 我的cURL模块确实有效,因为我已经能够从其他来源发出POST和GET查询
  • localhost:7369上的程序正在运行并正在运行。执行cURL命令时,它不会在其日志中显示任何incomming请求。
  • 我有一个使用PHP 5设置的服务器,奇怪的是它确实在那里工作..不是在我的本地开发环境中我有PHP 7,所以我不确定PHP 7是否导致问题,或者我只是忘了配置一些东西。
  • 我的服务器和开发环境都在CentOS 6.7

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

尝试像这样发送json:

curl_setopt($curl, CURLOPT_POSTFIELDS, $content);