fork download
  1. <?php
  2.  
  3. // cURL başlat
  4. $ch = curl_init();
  5.  
  6. // URL belirle
  7. $url = "https://w...content-available-to-author-only...g.com/commodities/us-cotton-no.2?cid=1186973";
  8.  
  9. // cURL ayarları
  10. curl_setopt($ch, CURLOPT_URL, $url); // Bağlanacak URL
  11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Dönen veriyi ekrana yazdırma
  12. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Yönlendirmeleri takip et
  13. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'); // Kullanıcı ajanı
  14.  
  15. // cURL çalıştır ve içerikleri al
  16. $response = curl_exec($ch);
  17.  
  18. // cURL kapat
  19.  
  20. // HTML içeriğini yazdır (isteğe bağlı)
  21. echo $response;
  22.  
  23. ?>
  24.  
Success #stdin #stdout 0.03s 25924KB
stdin
Standard input is empty
stdout
Standard output is empty