warning feof() expects parameter 1 to be resource(警告 feof() 期望参数 1 是资源)
本文介绍了警告 feof() 期望参数 1 是资源的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的错误日志因以下两个错误而失控
My error logs are getting out of control with the two below errors
warning feof() expects parameter 1 to be resource
和
warning fread() expects parameter 1 to be resource
负责的代码是
<?php
$file = '../upload/files/' . $filex;
header("Content-Disposition: attachment; filename=" . urlencode($file));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
header("Content-Length: " . filesize($file));
flush(); // this doesn't really matter.
$fp = fopen($file, "r");
while (!feof($fp)) {
echo fread($fp, 65536);
flush(); // this is essential for large downloads
}
fclose($fp);
?>
我使用此代码进行标题下载,但现在它吓坏了 - 在有人问我尝试过什么之前,我尝试了谷歌,但仍然没有完全理解错误消息.
I used this code for header downloads but its freaking out right now - before anyone asks what I have tried, I tried google but still don't fully understand the error message.
推荐答案
fopen 失败并返回 false.false 不是资源,因此是警告.
fopen fails and returns false. false is not a resource, thus the warning.
在将 $fp 作为类似资源的参数注入之前,您最好对其进行测试:
You'd better test $fp before injecting it as a resource-like argument:
if(($fp = fopen($file, "r"))) {
[...]
}
这篇关于警告 feof() 期望参数 1 是资源的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:警告 feof() 期望参数 1 是资源


基础教程推荐
猜你喜欢
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01