我正在尝试在远程站点的页面中调用 url。决定使用 curl。在远程站点上,url vars 显示为:
$_REQUEST Array
(
[var1] => val1
[amp;var2] => val2
[amp;var3] => val3
)
被调用的网址是:
http://site.com/controller/action.php?var1=val1&var2=val2&var3=val3
请注意,我没有&
在 url 中使用,但请求全局有它,或者几乎 - 它有amp;
而&
不是&
像我使用的那样!!!并不是说它应该有任何一个。
curl 对象已经登录到一个表单,设置了 cookie,在另一个页面上发布了一个表单,现在这是我必须遵循的最后一个链接。
这是我正在使用的 php:
curl_setopt($this->ch, CURLOPT_URL, "http://site.com/controller/action.php?var1=val1&var2=val2&var3=val3");
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($this->ch, CURLOPT_REFERER, "http://site.com/");
curl_setopt($this->ch, CURLOPT_VERBOSE, 1);
curl_setopt($this->ch, CURLOPT_COOKIEJAR, $this->cookie);
curl_setopt($this->ch, CURLOPT_COOKIEFILE, $this->cookie);
curl_setopt($this->ch, CURLOPT_POST, 0);
curl_setopt($this->ch, CURLOPT_HTTPGET, 1);
$output = curl_exec($this->ch);
$info = curl_getinfo($this->ch);
在此之后我运行了另一个 curl 请求,但我仍然登录,所以问题不是 cookie。因为使用 $_POST 的最后一个请求(登录表单)已将 CURLOPT_POST 设置为 0,将 CURLOPT_HTTPGET 设置为 1。这是 $info 的输出:
info Array
(
[url] => http://site.com/controller/action.php?var1=val1&var2=val2&var3=val3
[content_type] => text/html; charset=utf-8
[http_code] => 403
[header_size] => 403
[request_size] => 541
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.781186
[namelookup_time] => 3.7E-5
[connect_time] => 3.7E-5
[pretransfer_time] => 4.2E-5
[size_upload] => 1093
[size_download] => 3264
[speed_download] => 4178
[speed_upload] => 1399
[download_content_length] => 3264
[upload_content_length] => 0
[starttransfer_time] => 0.781078
[redirect_time] => 0
[certinfo] => Array
(
)
)
如果我将 $info['url'] 复制并粘贴到浏览器中,它就可以工作。完全丢失了,时钟丢失了几个小时,任何帮助将不胜感激;)