この記事では、PHP を使用して PDF ファイルをオンラインで読む方法の例について説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
1 11314151617
<?php if(!function_exists('read_pdf')) { function read_pdf($file) { if(strtolower(substr(strrchr($file,'.'),1)) != 'pdf') { echo '文件格式不对.'; return; } if(!file_exists($file)) { echo '文件不存在'; return; } header('Content-type: application/pdf'); header('filename='.$file); readfile($file); } } read_pdf('Python_study.pdf'); この記事が皆様のPHPプログラミング設計に役立つことを願っています。 |