How to read PDF files online with PHP_PHP Tutorial

不言
Release: 2023-02-28 17:50:01
Original
2001 people have browsed it

How to use PHP to read PDF files online

This example describes how to use PHP to read PDF files online. Share it with everyone for your reference. The specific implementation method is as follows:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

<?php
if(!function_exists(&#39;read_pdf&#39;)) {
function read_pdf($file) {
if(strtolower(substr(strrchr($file,&#39;.&#39;),1)) != &#39;pdf&#39;) {
echo &#39;文件格式不对.&#39;;
return;
}
if(!file_exists($file)) {
echo &#39;文件不存在&#39;;
return;
}
header(&#39;Content-type: application/pdf&#39;);
header(&#39;filename=&#39;.$file);
readfile($file);
}
}
read_pdf(&#39;Python_study.pdf&#39;);
Copy after login


1

2345678910 11121314151617

I hope this article will be helpful to everyone’s PHP programming design. help.
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template