国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php獲取遠(yuǎn)程文件內(nèi)容的函數(shù)

Original 2017-01-19 16:41:23 375
abstract:一個(gè)簡(jiǎn)單的php獲取遠(yuǎn)程文件內(nèi)容的函數(shù)代碼,兼容性強(qiáng)。直接調(diào)用就可以輕松獲取遠(yuǎn)程文件的內(nèi)容,使用這個(gè)函數(shù)也可獲取圖片。代碼如下:/**    * 讀遠(yuǎn)程內(nèi)容    * @return string    */ function get_url_content($url){    

一個(gè)簡(jiǎn)單的php獲取遠(yuǎn)程文件內(nèi)容的函數(shù)代碼,兼容性強(qiáng)。直接調(diào)用就可以輕松獲取遠(yuǎn)程文件的內(nèi)容,使用這個(gè)函數(shù)也可獲取圖片。代碼如下:

/**
 
 * 讀遠(yuǎn)程內(nèi)容
 
 * @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;
 
}

更多關(guān)于php獲取日歷的函數(shù)請(qǐng)關(guān)注PHP中文網(wǎng)(www.miracleart.cn)其他文章! 

Release Notes

Popular Entries