Substituting file_get_contents with cURL for External Link Display
When facing compatibility issues with the file_get_contents function, cURL provides an alternative for accessing external links. Here's how to implement it effectively:
The code provided initially falls short in its ability to display the desired content due to missing parameters. To address this, the following enhancements are necessary:
In summary, the modified code appears as:
function file_get_contents_curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
By incorporating these additions, cURL can effectively replace file_get_contents in your scenario, allowing you to display external links on your web page as intended.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3