コードを見るだけで、非常に理解しやすいです
function remote_filesize($uri,$user='',$pw='')
{
// 出力バッファリングを開始します
ob_start();
// 指定された uri でcurlを初期化します
$ch =curl_init($uri); // ヘッダーを取得するようにします
curl_setopt($ch, CURLOPT_HEADER, 1); // それを http HEAD リクエストにします
curl_setopt($ch, CURLOPT_NOBODY, 1); // 認証が必要な場合は、ここで実行します
; (!empty($user) && !empty($pw))
{
$headers = array('Authorization: Basic ' .base64_encode($user.':'.$pw));
curl_setopt($ch, CURLOPT_HTTPHEADER) , $headers);
}
$okay =curl_exec($ch);
curl_close($ch); // 出力バッファを取得します
$head = ob_get_contents() // 出力バッファをクリアして前に戻ります。バッファ設定
ob_end_clean(); // http ヘッダーの Content-Length フィールドから数値を取得します
$regex = '/Content-Length:s([0-9].+?)s/' ;
$count = preg_match($regex, $head, $matches); // Content-Length フィールドがあった場合、その値は // $matches[1] に格納されます
if (isset($matches[1) ]))
$size $last_kb =round($size/1024,3);
$last_kb を返します。 '$last_mb';
}
この関数の考え方は次のとおりです。最初に CURL で画像をバッファに取得し、次に正規化します。画像の Content-Length 情報を取得しても問題ありません。
http://www.bkjia.com/PHPjc/825146.html
http://www.bkjia.com/PHPjc/825146.html