Home > Article > Backend Development > laravel - PHP Is there any extension library that can read the page number of PDF and Word?
Is there any extension library for PHP that can read the page number of PDF and Word
I use laravel
It is necessary to implement the user to upload files and read how many pages there are in the file.
Is there any extension library for PHP that can read the page number of PDF and Word
I use laravel
It is necessary to realize the user uploading the file and reading the number of pages in the file.
Word can use phpword
For PDF:
<code>function count_pages($pdfname) { $pdftext = file_get_contents($pdfname); $num = preg_match_all("/\/Page\W/", $pdftext, $dummy); return $num; }</code>
Other solutions to pdf are also available on http://stackoverflow.com/ques...