"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Can cURL Be a Reliable Replacement for file_get_contents When Displaying External Links?

Can cURL Be a Reliable Replacement for file_get_contents When Displaying External Links?

Published on 2024-11-03
Browse:188

Can cURL Be a Reliable Replacement for file_get_contents When Displaying External Links?

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:

  • CURLOPT_AUTOREFERER: Enables automatic sending of the "Referer" header, which can be essential for parsing on the server side.
  • CURLOPT_FOLLOWLOCATION: Allows cURL to follow any redirects encountered, ensuring content retrieval.

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.

Release Statement This article is reprinted at: 1729172117 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

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