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

php Base64编码文件二进制流主要使用

时间:2017-05-01 16:03:21      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:jpg   编码   file   filename   ase   pre   name   class   decode   

<?php
header( "Content-type: image/jpeg");
//$filename=‘1.jpg‘;
//$content=file_get_contents($filename);
//$content = base64_encode($content); // 将二进制信息编码成字符串
//file_put_contents(‘6.txt‘,$content);

$file=‘6.txt‘;
$content=file_get_contents($file);

echo base64_decode($content);//输入图片

  

php Base64编码文件二进制流主要使用

标签:jpg   编码   file   filename   ase   pre   name   class   decode   

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

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