fwrite() 错误:提供的参数不是有效的流资源。为什么?

发布于 2024-12-10 21:48:14 字数 346 浏览 1 评论 0原文

我有以下代码:

$file = '/path/to/file.txt';

if (($fd = fopen($file, "a") !== false)) {
    fwrite($fd, 'message to be written' . "\n");
    fclose($fd);
}

为什么我会收到以下警告?

fwrite(): supplied argument is not a valid stream resource
fclose(): supplied argument is not a valid stream resource

I have this code:

$file = '/path/to/file.txt';

if (($fd = fopen($file, "a") !== false)) {
    fwrite($fd, 'message to be written' . "\n");
    fclose($fd);
}

Why do I get the following warnings?

fwrite(): supplied argument is not a valid stream resource
fclose(): supplied argument is not a valid stream resource

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

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

发布评论

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

评论(2

平安喜乐 2024-12-17 21:48:14

你的 if 语句是错误的。尝试一下

if (($fd = fopen($file, "a")) !== false) {

,因为你的就像

$fd = fopen($file, "a") !== false

Your if statement is wrong. Try

if (($fd = fopen($file, "a")) !== false) {

Because yours one is like

$fd = fopen($file, "a") !== false
简单气质女生网名 2024-12-17 21:48:14

因为你有一个括号错误。代码应为:

if (($fd = fopen($file, "a")) !== false) {

当前代码所做的是将 $fd 设置为将 fopen 返回值与 false 进行比较的结果,这也是false(假设fopen 成功)。实际上,您已经拥有了

if ($fd = false) {

不言自明且可测试的内容(使用 var_dump)。

故事的寓意:不要为 if 条件内的变量赋值。现在不是 1980 年,你也不是用 C 语言编程。只要说“不”并让核心可读即可;它会因此而爱你。

Because you have a parenthesizing error. The code should read:

if (($fd = fopen($file, "a")) !== false) {

What the current code does is set $fd to the result of comparing the fopen return value with false, which is also false (assuming the fopen succeeds). In effect you have

if ($fd = false) {

which is self-explanatory and also testable (with var_dump).

The moral of the story: Don't assign values to variables inside if conditions. This is not 1980, and you are not programming in C. Just say no and make the core readable; it will love you for it.

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