PHP imagejpeg() 问题
我有一个图像上传脚本,可以在我的小型共享主机上运行,但当我切换到 Virt Ded 时,它立即停止运行。经过一番研究,我确定罪魁祸首是 PHP 函数 imagejpeg() - 这是脚本中的最后一段代码。
它允许我指定 null 作为文件路径(在这种情况下,它将其打印到屏幕上),但不允许我输入任何文件路径而不返回 false。
有人知道发生了什么事吗?
I had an image upload script that worked on my little shared hosting, but just as I switched to Virt Ded, it immediately stopped working. After some research I determined the culprit to be the PHP function imagejpeg() - which was the last bit of code in the script.
It allows me to specify null as the filepath (in which case it prints it to the screen), but does not allow me to enter ANY filepath without return false.
Anybody know what is going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,我会查看 PHP 安装是否包含 imagejpeg() 所需的所有 libgd 内容。
您可以这样检查:
如果可以的话,您可以执行以下操作:
确保您看到列出了一些 jpeg 内容,如果没有,则需要安装一些依赖库。
First I would see if the PHP install contains all the libgd stuff you need for imagejpeg().
You can check like this:
If that's good to go you can do something like:
Make sure you see some jpeg stuff listed, if there is none you need some dependent libraries installed.