Open epub files in PHP

2019-03-29 20:17发布

I want to open an .epub document with PHP, to modify it (for example to add some text on the first page and last page) and to save it back to .epub I found some classes for saving a text into epub file, but I can't find anything about opening an epub in PHP.

标签: php epub
2条回答
我命由我不由天
2楼-- · 2019-03-29 20:33

epub files are just HTML+CSS files inside a ZIP archive (called the Open Container Format (OCF)) files with a different file extension :) So you can use PHP's ZipArchive class to work on the file.

查看更多
祖国的老花朵
3楼-- · 2019-03-29 20:57

There are libraries that support EPUB files. BookGlutton is one.

查看更多
登录 后发表回答