当前位置:Gxlcms > PHP教程 > php中base64转pdf的方法是什么

php中base64转pdf的方法是什么

时间:2021-07-01 10:21:17 帮助过:111人阅读

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

/*
 * 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的方法是什么的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行