Home | History | Annotate | Download | only in hello-php

Lines Matching refs:curl

71     $curl = curl_init($url[0]);
72 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
73 curl_setopt($curl, CURLOPT_FAILONERROR, false);
74 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
77 curl_setopt($curl, CURLINFO_HEADER_OUT, $returnRequestHeaders);
81 curl_setopt($curl, CURLOPT_HEADER, true);
88 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
91 $response = curl_exec($curl);
93 $response = curl_error($curl);
97 $response = curl_getinfo($curl, CURLINFO_HEADER_OUT) . $response;
99 curl_close($curl);