我正在使用 curl_setopt 来评估来自不同服务器的另一个文件,链接类似于“ http://somewhere.com/index.php?vars=hello ”
现在在某处.com/index.php 我需要获取使用 curl 传递的 vars 的值,但到目前为止我根本无法获得任何值。
这是我的示例代码供您参考,它来自调用某处的文件:
$d = "http://somewhere.com/index.php?vars=hello";
$ch1 = curl_init();
curl_setopt($ch1, CURLOPT_AUTOREFERER, TRUE);
curl_setopt($ch1, CURLOPT_HEADER, 0);
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch1, CURLOPT_URL, $d);
curl_setopt($ch1, CURLOPT_FOLLOWLOCATION, TRUE);
$data1 = curl_exec($ch1);
eval($data1);
curl_close($ch1);
在somewhere.com/index.php 我已经做了 print_r($_GET); 查看任何传递给文件的值,但它什么也没返回。