0

如何通过互联网检查文件大小?下面的示例是我的代码不起作用

echo filesize('http://localhost/wordpress-3.1.2.zip');
echo filesize('http://www.wordpress.com/wordpress-3.1.2.zip');
4

3 回答 3

3

filesize 函数用于获取本地存储文件的大小。* 对于远程文件,您必须找到其他解决方案,例如:

<?php
function getSizeFile($url) {
    if (substr($url,0,4)=='http') {
        $x = array_change_key_case(get_headers($url, 1),CASE_LOWER);
        if ( strcasecmp($x[0], 'HTTP/1.1 200 OK') != 0 ) { $x = $x['content-length'][1]; }
        else { $x = $x['content-length']; }
    }
    else { $x = @filesize($url); }

    return $x;
}
?> 

来源:请参阅下面链接中的第一个帖子评论

http://php.net/manual/en/function.filesize.php

*好吧,老实说,自从 PHP 5 以来,有一些文件函数的包装器,请参见此处:

http://www.php.net/manual/en/wrappers.php

你可以找到更多的例子,甚至在这里,这应该满足你的需求:PHP:远程文件大小,无需下载文件

下次提问前尝试使用搜索功能!

于 2013-04-14T15:48:23.980 回答
0

试试这个功能

<?php
    function remotefsize($url) {
        $sch = parse_url($url, PHP_URL_SCHEME);
        if (($sch != "http") && ($sch != "https") && ($sch != "ftp") && ($sch != "ftps")) {
            return false;
        }
        if (($sch == "http") || ($sch == "https")) {
            $headers = get_headers($url, 1);
            if ((!array_key_exists("Content-Length", $headers))) { return false; }
            return $headers["Content-Length"];
        }
        if (($sch == "ftp") || ($sch == "ftps")) {
            $server = parse_url($url, PHP_URL_HOST);
            $port = parse_url($url, PHP_URL_PORT);
            $path = parse_url($url, PHP_URL_PATH);
            $user = parse_url($url, PHP_URL_USER);
            $pass = parse_url($url, PHP_URL_PASS);
            if ((!$server) || (!$path)) { return false; }
            if (!$port) { $port = 21; }
            if (!$user) { $user = "anonymous"; }
            if (!$pass) { $pass = "phpos@"; }
            switch ($sch) {
                case "ftp":
                    $ftpid = ftp_connect($server, $port);
                    break;
                case "ftps":
                    $ftpid = ftp_ssl_connect($server, $port);
                    break;
            }
            if (!$ftpid) { return false; }
            $login = ftp_login($ftpid, $user, $pass);
            if (!$login) { return false; }
            $ftpsize = ftp_size($ftpid, $path);
            ftp_close($ftpid);
            if ($ftpsize == -1) { return false; }
            return $ftpsize;
        }
    }
?>
于 2013-04-14T15:46:34.920 回答
-1

我认为这可能是不可能的。最好的方法是通过下载文件file_get_contents,然后在文件上使用filesize。您以后也可以删除该文件!

于 2013-04-14T15:46:47.707 回答