php how to get web image size in kb?

前端 未结 7 889
迷失自我
迷失自我 2020-12-31 01:40

php how to get web image size in kb?

getimagesize only get the width and height.

and filesize caused waring.



        
相关标签:
7条回答
  • 2020-12-31 02:23

    That sounds like a permissions issue because filesize() should work just fine.

    Here is an example:

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

    Make sure the permissions are set correctly on the image and that the path is also correct. You will need to apply some math to convert from bytes to KB but after doing that you should be in good shape!

    0 讨论(0)
提交回复
热议问题