首页  >  文章  >  后端开发  >  php中base64转pdf的方法是什么

php中base64转pdf的方法是什么

hzc
hzc原创
2020-07-04 13:43:234572浏览

php中base64转pdf的方法:首先找到转化的pdf文件;接着使用函数“file_get_contents”来读取数据;然后使用函数“base64_decode”转化;最后使用函数“file_put_contents”写入数据即可。

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);//写}

推荐教程: 《php教程

以上是php中base64转pdf的方法是什么的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn