有没有办法获得链接列表的远程文件大小?

时间:2014-02-11 11:10:04

标签: php file curl size

是否可以获取链接列表的远程文件大小,从数组或.txt文件中获取每个链接的文件大小?

1 个答案:

答案 0 :(得分:1)

希望以下内容符合您的需求

function remote_file_size($url){

$header = get_headers($url, true);

if (isset($header['Content-Length']))

    return (int) $header['Content-Length'];
}