base64

php base64互转pdf代码

php base64互转pdf代码

php base64互转pdf代码
/*
 * base64转pdf
 */
function base642pdf($formTxt,$toPdf)
{
	$file = file_get_contents($formTxt);//读
    $data = base64_decode($file);//转换
	file_put_contents($toPdf, $data);//写
}
/*
 * pdf转base64
 */
function pdf2base64($formPdf,$toTxt)
{
	$file = file_get_contents($formPdf);//读
    $data = base64_encode($file);//转换
	file_put_contents($toTxt, $data);//写
}

本文属原创,转载请注明原文:http://www.zhimatong.com/jiaocheng/298.html

为保证教程的实用性及扩大知识面覆盖,如果您有相似问题而未解决,可联系在线客服免费技术支持。

内容有用

联系
顾问

在线
客服
购物车
账号登录

没有账号?立即注册

忘记密码

登录即同意用户协议没有账号? 立即注册
账号注册
我已阅读并同意用户协议
立即注册
注册即同意用户协议已有账号? 立即登录
找回密码

操作步骤:邮箱验证->设置新密码

注册即同意用户协议已有账号? 立即登录