1、【最傻最天真的方法】
将文件使用file_get_contents取回后,strlen
或者存为文件后使用filesize 嘿嘿
2、【使用get_headers】
如果没有打开allow_url_fopen
会显示waring
Warning: get_headers() [function.get-headers]: URL file-access is disabled in the server configuration
示例代码如下:
1 2 3 4 5 | <?PHP $a_array = get_headers($url, true); $size = $a_array['Content-Length']; Echo $size; ?> |
3、【使用fsockopen,然后正则匹配出文件大小】
使用fsockopen向目标地址发送http request,然后根据服务器的response使用正则匹配
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | <?PHP function get_file_size($url) { $url = parse_url($url); if (empty($url['host'])) { return false; } $url['port'] = empty($url['post']) ? 80 : $url['post']; $url['path'] = empty($url['path']) ? '/' : $url['path']; $fp = fsockopen($url['host'], $url['port'], $error); if($fp) { fputs($fp, "GET " . $url['path'] . " HTTP/1.1\r\n"); fputs($fp, "Host:" . $url['host']. "\r\n\r\n"); while (!feof($fp)) { $str = fgets($fp); if (trim($str) == '') { break; }elseif(preg_match('/Content-Length:(.*)/si', $str, $arr)) { return trim($arr[1]); } } fclose ( $fp); return false; }else { return false; } } ?> |