[contents] Set CURLOPT_HTTPHEADER only if the provided array contains data

This commit is contained in:
logmanoriginal 2018-03-25 15:48:30 +02:00
parent 5bd9c1611d
commit bc28c5da8e
1 changed files with 4 additions and 1 deletions

View File

@ -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);