web-dev-qa-db-ja.com

phpウェブ画像のサイズをKBで取得する方法は?

phpウェブ画像のサイズをKBで取得する方法は?

getimagesizeは幅と高さのみを取得します。

およびfilesizewaringを引き起こしました。

_$imgsize=filesize("http://static.adzerk.net/Advertisers/2564.jpg");
echo $imgsize;
_

Warning: filesize() [function.filesize]: stat failed for http://static.adzerk.net/Advertisers/2564.jpg

KBでWebイメージのサイズを取得する他の方法はありますか?

19
fish man

完全なHTTPリクエストを行う以外に、簡単な方法はありません。

$img = get_headers("http://static.adzerk.net/Advertisers/2564.jpg", 1);
print $img["Content-Length"];

cURL を使用することはできますが、 lighter HEADリクエストを送信する を送信します。

19
mario
<?php
$file_size = filesize($_SERVER['DOCUMENT_ROOT']."/Advertisers/2564.jpg"); // Get file size in bytes
$file_size = $file_size / 1024; // Get file size in KB
echo $file_size; // Echo file size
?>
5
Morgan Delaney

Filesize()は問題なく動作するはずなので、これは権限の問題のように思えます。

次に例を示します。

php > echo filesize("./9832712.jpg");
1433719

権限がイメージに正しく設定されていること、およびパスも正しいことを確認してください。バイトからKBに変換するには、いくつかの数学を適用する必要がありますが、それを実行すると、正常な状態になります。

3

リモートファイルにfilesize()を使用するかどうかはわかりませんが、php.netにはcURLの使用に関する優れたスニペットがあります。

http://www.php.net/manual/en/function.filesize.php#92462

3
Nick Pyett

この機能も使えます

<?php
$filesize=file_get_size($dir.'/'.$ff);
$filesize=$filesize/1024;// to convert in KB
echo $filesize;


function file_get_size($file) {
    //open file
    $fh = fopen($file, "r");
    //declare some variables
    $size = "0";
    $char = "";
    //set file pointer to 0; I'm a little bit paranoid, you can remove this
    fseek($fh, 0, SEEK_SET);
    //set multiplicator to zero
    $count = 0;
    while (true) {
        //jump 1 MB forward in file
        fseek($fh, 1048576, SEEK_CUR);
        //check if we actually left the file
        if (($char = fgetc($fh)) !== false) {
            //if not, go on
            $count ++;
        } else {
            //else jump back where we were before leaving and exit loop
            fseek($fh, -1048576, SEEK_CUR);
            break;
        }
    }
    //we could make $count jumps, so the file is at least $count * 1.000001 MB large
    //1048577 because we jump 1 MB and fgetc goes 1 B forward too
    $size = bcmul("1048577", $count);
    //now count the last few bytes; they're always less than 1048576 so it's quite fast
    $fine = 0;
    while(false !== ($char = fgetc($fh))) {
        $fine ++;
    }
    //and add them
    $size = bcadd($size, $fine);
    fclose($fh);
    return $size;
}
?>
1

Filesize()に関する良いリンクは次のとおりです

Filesize()を使用してリモートファイル情報を取得することはできません。最初にダウンロードするか、別の方法で決定する必要があります

ここでCurlを使用するのは良い方法です。

チュートリアル

1
lockdown

Get_headers()関数を使用してファイルサイズを取得できます。以下のコードを使用してください:

    $image = get_headers($url, 1);
    $bytes = $image["Content-Length"];
    $mb = $bytes/(1024 * 1024);
    echo number_format($mb,2) . " MB";
0