PHP kodlama yapıp curl ile sorgu vs yaptırabilecek arkadaşlar, varmı?
türkiye'de curl dersi ile ilgili fazla birşey göremedim yardımcı olabilcekler varmı?
PHP'den ve curl den anlıyorum diyenler bekleniyorsunuz. |
5 Mesajlar | 827 Okunma |
PHP kodlama yapıp curl ile sorgu vs yaptırabilecek arkadaşlar, varmı?
türkiye'de curl dersi ile ilgili fazla birşey göremedim yardımcı olabilcekler varmı?
$web_site = "www.site ismi vs.com";
$curl = curl_init();
$header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
$header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
$header[] = "Cache-Control: max-age=0";
$header[] = "Connection: keep-alive";
$header[] = "Keep-Alive: 300";
$header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
$header[] = "Accept-Language: en-us,en;q=0.5";
$header[] = "Pragma: ";
curl_setopt($curl, CURLOPT_URL, $web_site);
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)');
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($curl, CURLOPT_REFERER, 'http://www.google.com');
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
curl_setopt($curl, CURLOPT_AUTOREFERER, true);
curl_setopt($curl, CURLOPT_COOKIEJAR, 'google_h.txt');
curl_setopt($curl, CURLOPT_COOKIEFILE, 'google.txt');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
$donus_datasi = curl_exec($curl);
curl_close($curl);