PHP 有什么拓展库可以读出PDF和Word的页数
我用的是laravel
需要实现用户上传文件,读取文件有多少页。
回复内容:
PHP 有什么拓展库可以读出PDF和Word的页数
我用的是laravel
需要实现用户上传文件,读取文件有多少页。
Word可以用phpword
pdf的话:
<code>function count_pages($pdfname) { $p<strong>(本文来源gaodai#ma#com搞@@代~&码网</strong><pre>搞代gaodaima码
dftext = file_get_contents($pdfname); $num = preg_match_all(“/\/Page\W/”, $pdftext, $dummy); return $num;}
pdf其他解决方案so上也有 http://stackoverflow.com/ques…