getimagesize() 错误:“无法打开流:没有这样的文件或目录”
我收到以下错误:
getimagesize(barbie2.jpeg) [function.getimagesize]: 无法打开流: 没有这样的文件或目录
在线:
list($hight, $width) = getimagesize($name);
I get the following error:
getimagesize(barbie2.jpeg) [function.getimagesize]: failed to open stream: No such file or directory
On line:
list($hight, $width) = getimagesize($name);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 getimagesize() 中,您需要指定图像的路径。可能它没有获取图像路径,所以它会给你错误。
您调用此函数的文件和图像位置不同,因此会出现错误。
in getimagesize() you need to specify path of the image. Probably it is not getting image path so it is giving you error.
your file from where you have called this function and image location is different so it is giving you error.
您可以使用
$_FILES["fileToUpload"]["tmp_name"]
指定图像的路径,因为上传时文件存储在临时目录中。You can specify the path of the image by using
$_FILES["fileToUpload"]["tmp_name"]
because when you upload the file is stored in the temp directory.