getimagesize() 错误:“无法打开流:没有这样的文件或目录”

发布于 2024-12-12 04:16:38 字数 204 浏览 0 评论 0原文

我收到以下错误:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤蝉 2024-12-19 04:16:38

在 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.

≈。彩虹 2024-12-19 04:16:38

您可以使用 $_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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文