vote up 0 vote down star

This question is simple. What function would I use in a PHP script to load data from a URL into a string?

flag

65% accept rate

4 Answers

vote up 2 vote down check

CURL is usually a good solution: http://www.php.net/curl


// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// grab URL and pass it to the browser
$html = curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);
link|flag
vote up 2 vote down

With file wrappers you can use file_get_contents to access http resources (pretty much just GET requests, no POST). For more complicated http requests you can use the curl wrappers if you have them installed. Check php.net for more info.

link|flag
vote up 2 vote down

I think you are looking for

$url_data = file_get_contents("http://example.com/examplefile.txt");
link|flag
OK, it works. But not for wikipedia.org. For example: file_get_contents("http://en.wikipedia.org/wiki/apple"); fails This is a problem because this is the site that I am trying to load data from" – GameFreak Dec 4 '08 at 1:56
OK, NOW it works. Even though I didn't change anything. – GameFreak Dec 4 '08 at 2:05
vote up 0 vote down

Check out Snoopy, a PHP class that simulates a web browser:

include "Snoopy.class.php";
$snoopy = new Snoopy;
$snoopy->fetchtext("http://www.example.com");
$html = $snoopy->results;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.