Merge pull request #388 from dzaikos/fix-curl-head-request-method
Fixed geturl() function to ensure HEAD request method is used.
This commit is contained in:
commit
1da6e22006
1 changed files with 1 additions and 0 deletions
|
@ -2220,6 +2220,7 @@
|
||||||
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0');
|
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0');
|
||||||
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
||||||
curl_setopt($curl, CURLOPT_HEADER, true);
|
curl_setopt($curl, CURLOPT_HEADER, true);
|
||||||
|
curl_setopt($curl, CURLOPT_NOBODY, true);
|
||||||
curl_setopt($curl, CURLOPT_REFERER, $url);
|
curl_setopt($curl, CURLOPT_REFERER, $url);
|
||||||
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
|
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
|
||||||
curl_setopt($curl, CURLOPT_AUTOREFERER, true);
|
curl_setopt($curl, CURLOPT_AUTOREFERER, true);
|
||||||
|
|
Loading…
Reference in a new issue