熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP 獲取遠程文件大小的3種解決方法

2022-06-13   來源: PHP編程 
以下是對PHP中獲取遠程文件大小的種解決方法進行了詳細的介紹需要的朋友參考下  

  使用file_get_contents()

復制代碼 代碼如下:
<?php
$file = file_get_contents($url);
echo strlen($file);
?>

  
使用get_headers()

復制代碼 代碼如下:
<?php
$header_array = get_headers($url true);
$size = $header_array[ContentLength];
echo $size;
?>

  
PS:
需要打開allow_url_fopen!
如未打開會顯示
Warning: get_headers() [functiongetheaders]: URL fileaccess is disabled in the server configuration
使用fsockopen()

復制代碼 代碼如下:

  
<?php
 function get_file_size($url) {
     $url = parse_url($url);

     if (empty($url[host])) {
         return false;
     }

     $url[port] = empty($url[post]) ? : $url[post];
     $url[path] = empty($url[path]) ? / : $url[path];

     $fp = fsockopen($url[host] $url[port] $error);

     if($fp) {
         fputs($fp "GET " $url[path] " HTTP/rn");
         fputs($fp "Host:" $url[host] "rnrn");

         while (!feof($fp)) {
             $str = fgets($fp);
             if (trim($str) == ) {
                 break;
             }elseif(preg_match(/ContentLength:(*)/si $str $arr)) {
                 return trim($arr[]);
             }
         }
         fclose ( $fp);
         return false;
     }else {
         return false;
     }
 }
 ?>


From:http://tw.wingwit.com/Article/program/PHP/201311/21084.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.