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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM