PHP-getimagesize 函数
getimagesize 是否使用额外的 HTTP 请求或者可以远程查找大小?
注意:图片为外部图片
Does getimagesize use an extra HTTP request or can it find out the size remotely?
NOTE: The image is external
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以远程或本地获取它:
来自手册。
It can fetch it remotely or locally:
From the manual.
总会有至少一个 HTTP 请求;否则它怎么知道你在寻找什么?
如果您询问它是否会下载该文件 - 是的,它会。没有指定图像尺寸的 HTTP 标头,因此直到下载文件后它才知道。
There will always be at least one HTTP request; otherwise how will it know what you're looking for?
If you're asking whether or not it'll download the file - yes, it will. There's no HTTP header that specifies image dimensions, so it doesn't know until the file is downloaded.