$url, CURLOPT_HEADER => true, CURLOPT_FOLLOWLOCATION => true, ); curl_setopt_array($ch, $options); $request = curl_exec($ch); curl_close($ch); if($isJSON){ $request = $this->parseJSON($request); } return $request; } }