Remote file size without downloading file

前端 未结 14 1832
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 03:01

Is there a way to get the size of a remote file http://my_url/my_file.txt without downloading the file?

14条回答
  •  萌比男神i
    2020-11-22 03:24

    Php function get_headers() works for me to check the content-length as

    $headers = get_headers('http://example.com/image.jpg', 1);
    $filesize = $headers['Content-Length'];
    

    For More Detail : PHP Function get_headers()

提交回复
热议问题