Ankündigung

Einklappen
Keine Ankündigung bisher.

cURL Problem beim schreiben in Datei

Einklappen

Neue Werbung 2019

Einklappen
X
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • cURL Problem beim schreiben in Datei

    Hey Leute,

    ich habe mal eine Frage bezüglich cURL.
    Ich habe mir für mein Verständnis ein Script kopiert und will dieses ausführen. bei der Ausführung bekomme ich keine Errors oder so, aber es wird einfach nichts in die Datei (txt) geschrieben.

    Könnte mir vielleicht jemand erläutern, warum ich eine leere Datei habe?

    PHP-Code:
    /**
     * Curl example - Fetching an url and saving the content found on that url to a file (example_homepage.txt)
     */
    //initializes a new session and return a cURL handle for use with the curl_setopt(), curl_exec(), and curl_close() functions.
    $ch curl_init();
    //open/create a file for writing
    $fp fopen("example_homepage.txt""w");

    // set the url to fetch 
    curl_setopt($chCURLOPT_URL"example.com");


    //return the transfer (the result of curl_exec()) as a string instead of outputing directly
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
    //puts the fetching result to $fp file handler
    curl_setopt($chCURLOPT_FILE$fp);

    // execute the curl session
    curl_exec($ch);

    // close curl resource to free up system resources 
    curl_close($ch);

    //close the file opened for writing
    fclose($fp);

    echo 
    '<br /><center><div style="background-color:green;color:#fff;padding:10px;width:400px;font-size:16px">please check the file: <b>example_homepage.txt</b> to see the results!</div></center>'
    Danke und viele Grüße

  • #2
    Ohne der Abfrage von Fehlern, kann er natürlich auch keine anzeigen.

    Schau dir das an:
    http://php.net/manual/en/function.curl-error.php
    Windows Server gehören NICHT ins Internet!

    Dildo? Dildo!

    Kommentar

    Lädt...
    X