PHP function to obtain the contents of remote files, _PHP tutorial

WBOY
Release: 2016-07-12 09:05:55
Original
853 people have browsed it

PHP function to obtain remote file content,

A simple PHP function code to obtain remote file content, with strong compatibility. You can easily get the content of the remote file by calling it directly. You can also get pictures by using this function. The code is as follows:

/**

 * 读远程内容

 * @return string

 */
function get_url_content($url){

  if(function_exists("curl_init")){

    $ch = curl_init();

    $timeout = 30;

    curl_setopt($ch, CURLOPT_URL, $url);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

    $file_contents = curl_exec($ch);

    curl_close($ch);

  }else{

    $is_auf=ini_get('allow_url_fopen')?true:false;

    if($is_auf){

      $file_contents = file_get_contents($url);

    }

  }

  return $file_contents;

}
Copy after login

The above is the function code for PHP to obtain the content of remote files. I hope this article will be helpful to everyone in learning PHP programming.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1067299.htmlTechArticlephp function to get the content of the remote file, a simple php function code to get the content of the remote file, with strong compatibility. You can easily get the content of the remote file by calling directly, use this...
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 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!