Nasıl kullanırım cURL &

0 Cevap php

Ben bir web sitesine yönlendirme parodi PHP ile cURL öğrenmeye çalışıyorum.

Aşağıdaki komut ile bunu gerçekleştirmek için bekleniyor ... ama çalışmıyor gibi görünüyor.

Ben yanlış gidiyorum Herhangi bir fikir / öneri?

Yoksa bana bu anlamaya yardımcı olabilecek herhangi öğreticiler biliyor musunuz?

Teşekkürler!

Jessica

<?php
$host = "http://mysite.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $host);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
curl_setopt($ch, CURLOPT_REFERER, "http://google.com");
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);
curl_close($ch);
?>

0 Cevap