PHP 有什么拓展库可以读出PDF和Word的页数
我用的是laravel
需要实现用户上传文件,读取文件有多少页。
PHP 有什么拓展库可以读出PDF和Word的页数
我用的是laravel
需要实现用户上传文件,读取文件有多少页。
Word可以用phpword
pdf的话:
<code>function count_pages($pdfname) { $pdftext = file_get_contents($pdfname); $num = preg_match_all("/\/Page\W/", $pdftext, $dummy); return $num; }</code>
pdf其他解决方案so上也有 http://stackoverflow.com/ques...