PHP - Get number of pages in a Word document

后端 未结 5 1965
终归单人心
终归单人心 2020-12-10 23:24

Is there a way to count number of pages using PHP for existing Word documents?

I appreciate for the help.

Thanks

5条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-11 00:07

    To get meta data properties of doc,docx,ppt and pptx like number of pages, number of slides from PHP i followed the following process and it worked liked charm and iam so happy, below is the process i followed , hope it helps someone

    Download and configure Apache Tika.
    

    once its done you could try executing the following commadn it will give all the meta data about your file

    java -jar tika-app-1.5.jar -m test.docx
    java -jar tika-app-1.5.jar -m test.doc
    java -jar tika-app-1.5.jar -m test.pptx
    java -jar tika-app-1.5.jar -m test.ppt
    

    once tested you can execute this comman in PHP script. Thanks.

提交回复
热议问题