标签: php file curl size
是否可以获取链接列表的远程文件大小,从数组或.txt文件中获取每个链接的文件大小?
答案 0 :(得分:1)
希望以下内容符合您的需求
function remote_file_size($url){ $header = get_headers($url, true); if (isset($header['Content-Length'])) return (int) $header['Content-Length']; }