php中base64轉pdf的方法是什麼

2020-07-16 10:06:19

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中base64轉pdf的方法是什麼的詳細內容,更多請關注TW511.COM其它相關文章!