Home >Backend Development >PHP Tutorial >我想读取一个图片文件, 并输出的到浏览器请求中. 我应该使用 fread 还是file_get_contents.

我想读取一个图片文件, 并输出的到浏览器请求中. 我应该使用 fread 还是file_get_contents.

WBOY
WBOYOriginal
2016-06-06 20:19:341367browse

https://github.com/upyun/php-sdk

他这里说 文件流的方式上传,可降低内存占用, 这个是什么意思哈

回复内容:

https://github.com/upyun/php-sdk

他这里说 文件流的方式上传,可降低内存占用, 这个是什么意思哈

这两个方法都是可以完成你的要求的,不过关键就在于内存的优化。
使用 fread 可以每次只读出一部分的文件内存,之后立即输出到浏览器响应中,如此循环将所有内容输出,这样内存的消耗就可以得到控制。
file_get_contents 则是每次都将文件内容一次性读到内存,这样的话一次申请很大块的内存,对于较大的文件(如图像之类的),在请求并发过大的时候,就很容易内存吃紧。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn