エコーごとに「完了」または「エラー」を返すスクリプトから戻り値を取得しようとしています。最初に、これをphp関数file_get_contents
で機能させることができると思いましたが、スクリプトで印刷しているものだけでなく、スクリプト全体を返します。それから私はそのcURL
方法を信じていましたが、うまくいきません....
呼び出されるスクリプト:
<?php
include("config.php");
print "complete";
?>
私のカールを使ったスクリプト:
$url="caller.php";
$ch = curl_init(); //initialize curl handle
curl_setopt($ch, CURLOPT_URL, $url); //set the url
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); //return as a variable
$response = curl_exec($ch); //run the whole process and return the response
curl_close($ch); //close the curl handle
echo "test". $response."|";
なぜこれが機能しないのですか?そして、どうすればそれを機能させることができますか?! ファイル方式?