forked from blallo/rss-bridge
[contents] Set CURLOPT_HTTPHEADER only if the provided array contains data
This commit is contained in:
parent
5bd9c1611d
commit
bc28c5da8e
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,10 @@ function getContents($url, $header = array(), $opts = array()){
|
|||
$ch = curl_init($url);
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
||||
|
||||
if(is_array($header) && count($header) !== 0)
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
|
||||
|
||||
curl_setopt($ch, CURLOPT_USERAGENT, ini_get('user_agent'));
|
||||
curl_setopt($ch, CURLOPT_ENCODING, '');
|
||||
curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
|
||||
|
|
Loading…
Reference in a new issue