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