Jump to content

file_get_contents, cURL & header("Location


kid85

Recommended Posts

A.)

I've read in this article that file_get_contents is deprecated in favor of cURL. Is this true ? Is this only for fetching files in another web or for fetching my own files as well ?

 

http://wiki.ittoolbox.com/index.php/Switch_from_file_get_contents_to_curl

 

B.)

Also, I would like to know which is the best practice for redirection (I know there are countless other ways but lets focus on PHP). Any advantages or disadvantages for each ?

1.

header("Location: http://www.somesite.com");

2.

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.somesite.com");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);

Link to comment
https://forums.phpfreaks.com/topic/83858-file_get_contents-curl-headerlocation/
Share on other sites

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.