php Base64编码文件二进制流主要使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Base64编码文件二进制流主要使用相关的知识,希望对你有一定的参考价值。
<?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编码文件二进制流主要使用的主要内容,如果未能解决你的问题,请参考以下文章