PHP readfile 添加内容长度到输出
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
readfile()
打印出内容本身并返回内容长度——您可以使用readfile
有效地打印内容,然后使用print
打印内容长度。删除打印并直接使用readfile()
prints out the contents itself and returns the content length -- you're effectively printing the contents withreadfile
and then printing the content length withprint
. Remove print and just use