程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php獲取遠程文件的大小

php獲取遠程文件的大小

編輯:PHP綜合

  php獲取遠程文件的大小,具體代碼如下:
/*
**功能:獲取遠程文件的大小,返回值的單位是:字節
*/
function get_fileSize($url){
if(!isset($url)||trim($url)==''){
return '';
}
ob_start();
$ch=curl_init($url);
curl_setopt($ch,CURLOPT_HEADER,1);
curl_setopt($ch,CURLOPT_NOBODY,1);
$okay=curl_exec($ch);
curl_close($ch);
$head=ob_get_contents();
ob_end_clean();
$regex='/Content-Length:s([0-9].+?)s/';
$count=preg_match($regex,$head,$matches);
return isset($matches[1])&&is_numeric($matches[1])?$matches[1]:'';
}

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved