• 04-12-2014, 20:02:19
    #1
    edit.

    <?php
    
    $ch = curl_init("http://www.example.com/");
    $fp = fopen("example_homepage.txt", "w");
    
    curl_setopt($ch, CURLOPT_FILE, $fp);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    
    curl_exec($ch);
    curl_close($ch);
    fclose($fp);
    ?>


  • 08-12-2014, 15:37:52
    #2
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); satırını ekleyerek deneyin.