为什么 .php 文件上的 fread() 与 .txt 文件上的 fread() 不同?

发布于 2024-08-27 18:55:00 字数 232 浏览 11 评论 0原文

从 .php 文件读取 .txt 文件时,fread() 函数无法工作(不显示错误)是否有任何原因?

代码

$file = fopen("db.php","rw");
$data = fgets($file, filesize("db.php"));
echo($data);
fclose($file);
die();

Is there any reason why the fread() function wouldn't work (no errors show up) when reading from a .php file over a .txt file?

code

$file = fopen("db.php","rw");
$data = fgets($file, filesize("db.php"));
echo($data);
fclose($file);
die();

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

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

发布评论

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

评论(3

も星光 2024-09-03 18:55:00

通过 .txt 文件读取 .php 文件时,fread() 函数无法工作(不显示错误)是否有任何原因?

不,如果您以相同的方式处理它们(相同的协议/方法/位置),则不会。它们都只是 fread() 的普通数据。

Is there any reason why the fread() function wouldn't work (no errors show up) when reading from a .php file over a .txt file?

No, not if you're addressing them the same way (same protocol / method / location). They're all just plain data to fread().

淑女气质 2024-09-03 18:55:00

.php 文件和 .txt 文件的权限是否相同?我知道这似乎是显而易见的,但有时我们会忽略一些小事情。

Are the permissions the same for the .php file and the .txt file? I know that seems obvious but sometimes it's the little things that get by us.

俏︾媚 2024-09-03 18:55:00

关键是,如果您想在页面中显示它,它将被解释,因此您应该使用 FILTER_SANITIZE_SPECIAL_CHARS 或其他类似选项过滤其 html 标签。

The point is that if you want to display that in a page, it will get interpreted, so you should filter its html tags with FILTER_SANITIZE_SPECIAL_CHARS or some other similar option.

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