//pdf 在线预览
public function pagePdf(){
$file = '/home/wangshunan/www/app/seek/Sphinx.pdf';
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);
}
pdf课件 在线预览
最新推荐文章于 2024-10-22 12:00:25 发布