Bo'limlar Fayllar bilan ishlash Fayl og'irligi bit'larda

Fayl og'irligi bit'larda

Fayl og'irligi bit'larda
  1. <?
  2. function showfilesize( $url ){static $regex ='/^Content-Length:*+Kd++$/im' ;
  3. if(! $fp =@fopen ($url ,'rb' )){return false;}
  4. if(isset( $http_response_header )&& preg_match ($regex ,implode ("n" , $http_response_header), $matches )){
  5. return(int) $matches [ 0];
  6. }
  7. return strlen (stream_get_contents( $fp ));
  8. }
  9. ?>