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编码文件二进制流主要使用的主要内容,如果未能解决你的问题,请参考以下文章

java对文件的二进制流base64编码解码

php 图片流 转 base64

Base64编码理解

c# Base64编码和图片的互相转换代码

Base64原理解析与使用

base64加密和解码原理和代码