Home > php教程 > PHP开发 > body text

PHP rewrites the file_get_contents function example based on curl

高洛峰
Release: 2016-12-23 15:34:08
Original
1405 people have browsed it

The example in this article describes how PHP rewrites the file_get_contents function based on curl. Share it with everyone for your reference, the details are as follows:

file_get_contents will prompt Connection refused when the connection cannot be reached, which sometimes causes inconvenience; in addition, the performance of curl is higher than file_get_contents, so use curl to rewrite file_get_contents

function _file_get_contents($s) {
  $ret = "";
  $ch = curl_init($s);
  curl_setopt($ch, CURLOPT_HEADER, 0);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
  curl_setopt($ch, CURLOPT_TIMEOUT, 0);
  $buffer = curl_exec($ch);
  curl_close($ch);
  if ($buffer === false || empty($buffer)) {
    $ret = "";
  } else {
    $ret = $buffer;
  }
  return $ret;
}
Copy after login

Hope What this article describes will be helpful to everyone in PHP programming.

For more PHP-based curl-based rewriting of file_get_contents function examples, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!