Home > Backend Development > PHP Tutorial > php 资料以流的方式传输

php 资料以流的方式传输

WBOY
Release: 2016-06-13 12:43:14
Original
909 people have browsed it

php 文件以流的方式传输
 场景:
    客户端获取服务器上的mp3文件播放,但是因为某些原因客户端无法写文件,也就是不能下载操作。
    现在想法是在php端用 fopen -> fread ->echo 把mp3的buffer读到内存,客户端收到buffer存入内存中,然后播放内存中的声音。

 问题:
    现在是服务器上有一个5143字节的Mp3,但是客户端只收到5042.测试是有某些字符被转义了,在网上找过很多方法,似乎都不行,php才学,有什么方法可以让他不转义 得到正确的文件buffer呢。
    

文件流 流方式传输
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template