php mime base64,base64_encode — 使用 MIME base64 对数据进行编码

### base64_encode()

#### 说明

`string base64_encode ( string $data )`

使用 base64 对 data 进行编码,数据要比原始数据多占用 33% 左右的空间。

设计此种编码是为了使二进制数据,例如电子邮件的主体可以通过非纯 8-bit 的传输层传输。

#### 示例

Example #1

~~~

$str = 'This is an encoded string';

echo base64_encode($str);

?>

~~~

以上例程会输出:

VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==

* * * * *

Example #2

A function I'm using to return local images as base64 encrypted code, i.e. embedding the image source into the html request.

This will greatly reduce your page load time as the browser will only need to send one server request for the entire page, rather than multiple requests for the HTML and the images. Requests need to be uploaded and 99% of the world are limited on their upload speed to the server.

~~~

function base64_encode_image ($filename=string,$filetype=string) {

if ($filename) {

$imgbinary = fread(fopen($filename, "r"), filesize($filename));

return 'data:image/' . $filetype . ';base64,' . base64_encode($imgbinary);

}

}

?>

~~~

used as so

~~~

.logo {

background: url("<?php echo base64_encode_image ('img/logo.png','png'); ?>") no-repeat right 5px;

}

~~~

or

`logo.png','png');%20?>`

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值