码迷,mamicode.com
首页 > Web开发 > 详细

php二进制流文件

时间:2015-09-21 00:05:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 1 <?php
 2 $img_file = ‘test.png‘; 
 3 // $fp = fopen($img_file, ‘rb‘);
 4 // $content = fread($fp, filesize($img_file)); //二进制数据 
 5 // fclose($fp);
 6 // header(‘Content-Type: image/jpeg‘);
 7 $content=file_get_contents($img_file); //二进制的流
 8 header(‘Content-Type: image/jpeg‘);
 9 echo $content;
10 ?>

 

php二进制流文件

标签:

原文地址:http://www.cnblogs.com/719907411hl/p/4824537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!