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