0
我有兩個PHP站點,一個API的網站(x.php)和另一個,它調用的捲曲度(y.php)API的網站PHP - 獲得兩個網站
的X之間,捲曲的返回值。 PHP是這樣的:
if (isset($_POST['testconnection'])) {
return "ok";
}
而像這樣的y.php:
$host = "https://there.is.the/x.php";
$command = array (
"testconnection" => "testconnection"
);
$ch=curl_init($host);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($command));
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT,180);
$response = curl_exec($ch);
curl_close($ch);
var_dump($response);
正如你所看到的例子,我想從x.php得到返回的字符串在y .php,但我在答案中得到一個空字符串:string(0)「」 我認爲這將是:字符串(2)「OK」 我已經更換了回報在x.php但沒有成功呼應。
很抱歉,如果這是一個小白的問題,我在捲曲很新。