PHP-如何使用pdftk获取总页数?
作者:互联网
我正在使用pdftk来获取php中pdf文件的总页数.
我正在使用代码.
我的pdftk.exe文件在
assets/pdftk folder
and my pdf file is in
Files folder
$command = '../assets/pdftk/pdftk.exe ';
$command.="../Files/" . $fileNames;
$command.="dump_data | grep NumberOfPages";
exec($command);
我需要获取字符串中的页数.如何做到这一点.提前感谢
解决方法:
这对我有用:
$pageCount = intval('pdftk path/to/pdf.pdf dump_data | grep "NumberOfPages" | cut -d":" -f2');
标签:pdftk,php 来源: https://codeday.me/bug/20191028/1956082.html