How can I convert a docx document to html using php?

前端 未结 4 1334
萌比男神i
萌比男神i 2020-11-29 05:14

I want to be able to upload an MS word document and export it a page in my site.

Is there any way to accomplish this?

4条回答
  •  不知归路
    2020-11-29 06:03

    If you don't refuse REST API, then you can use:

    • Apache Tika. Is a proven OSS leader for text-extraction
    • If you don't want to hassle with configuring and want ready-to-go solution you can use RawText, but it's not free.

    Sample code for RawText:

    $result = $rawText -> parse($your_file)
    

提交回复
热议问题