我正在尝试从每个回显“完成”或“错误”返回的脚本中获取返回值。首先,我认为我可以使用 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."|";
为什么这不起作用?我怎样才能让它工作?!文件方法?