Jump to content

write url contents into file


vividona

Recommended Posts

cURL and file:

 

$url = "http://someurl.com/something";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETRUNTRANSFER, ture);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, ture);
$opt = curl_exec($ch);

$handle = fopen("myfile.txt", "wb");
fwrite($handle, $opt);
fclose($handle);

When your script goes live(which i assume it will) you wont be using a localhost address....To test the part you write that writes the contents to a file you can use almost any url, or place a sample file file on a server, for sakes of testing you can use "http://www.phpfreaks.com/forums/index.php?board=1.0" and if the HTML from the page gets written to your file, then it will almost certainly work with other URL's you specify....

 

Or look into configuring virtual host on your local apache install.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.