我正在尝试通过 http 调用 php 脚本并从我计划进一步处理的地方接收一个 json 对象。
基本上,代码如下:
<?php
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$version=$_GET["v"];
$product=$_GET["p"];
$stream=$_GET["s"];
$cmd=$_GET["c"];
$string = file_get_contents("http://localhost:82/releasenote/src/getTSBDetails.php?p=$product&v=$version&s=$stream&c=$cmd");
print_r($string);
exit();
} else {
print("2");
$string = file_get_contents('tsbDetails.json');
}
在浏览器中直接调用get_file_contents http请求时,输出的是一个json,但是尝试使用上面的时候没有响应。