PHP tmpfile() 返回 false

发布于 2024-11-14 10:34:10 字数 232 浏览 1 评论 0原文

我有一个之前可以运行的图像上传脚本。现在它已损坏,我已将问题追溯到一行:

$temp = tmpfile();
// $temp === false

tmpfile() 函数返回 false。我似乎不明白为什么。我在谷歌上搜索这个问题时遇到了困难。

该脚本仅在我的本地测试环境 OSX 10.6.7、运行 MAMP 1.9.5 上损坏。幸运的是,现场网站运行良好。

I've got an image upload script which was previously working. It's now broken, and I've traced the problem down to one line:

$temp = tmpfile();
// $temp === false

The tmpfile() function is returning false. I can't seem to figure out why. I'm having a hard time wading through Google on this one.

The script it only broken on my local test environment, OSX 10.6.7, running MAMP 1.9.5. Fortunately the live site is working fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

橘味果▽酱 2024-11-21 10:34:10

如果tmpfile() 无法创建临时文件,则返回false。确保您的 tmp 文件夹可写,并尝试检查 sys_get_temp_dir() 函数返回的内容。

tmpfile() returns false if it is unable to create the temporary file. Make sure your tmp folder is writable and try and check what sys_get_temp_dir() function returns.

书信已泛黄 2024-11-21 10:34:10

可能是权限问题。
使用 sys_get_temp_dir() 来查看临时文件将在哪里创建,并确保 php 有权在那里写入。

It might be a problem with permissions.
Use sys_get_temp_dir() to see where the temp file will be created and make sure php has access to write there.

·深蓝 2024-11-21 10:34:10

就我而言,它尝试在其中创建文件的文件夹包含一直到 tmpFFFF.tmp 的临时文件。将这些临时文件从文件夹中移走后,它又从 tmp1.tmp 开始。

In my case, the folder it was trying to create the file in had temp files ranging all the way up to tmpFFFF.tmp. After moving those temp files away from the folder, it started back at tmp1.tmp.

痴者 2024-11-21 10:34:10

首先,启用所有 PHP 警告,看看它是否在告诉您一些信息。

其次,检查您的临时文件夹并确保 PHP 对其具有写入权限。某些“安全模式”限制(基本目录等)可能会阻止访问。

First, enable all PHP warnings to see if it is telling you something.

Second, check your temp folder and make sure PHP has write access to it. It's possible that certain "safe mode" restrictions (base dirs, etc) are preventing access.

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