PHP readfile 添加内容长度到输出

发布于 2024-08-30 20:38:58 字数 113 浏览 4 评论 0原文

我正在使用 PHP readfile 函数来读取文件并打印它,如下所示:print readfile ('anyfile')。这是可行的,但文件的内容长度也会添加到字符串的末尾。为什么?

I am using the PHP readfile function to read a file and print it like so: print readfile ('anyfile'). This works, but the content length of the file is added at the end of the string also. Why?

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

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

发布评论

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

评论(1

旧情勿念 2024-09-06 20:38:58

readfile() 打印出内容本身并返回内容长度——您可以使用 readfile 有效地打印内容,然后使用 print 打印内容长度。删除打印并直接使用

readfile('anyfile');

readfile() prints out the contents itself and returns the content length -- you're effectively printing the contents with readfile and then printing the content length with print. Remove print and just use

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