lywzx/php-epub
Composer 安装命令:
composer require lywzx/php-epub
包简介
php epub parser
README 文档
README
About php-epub library
php-epub is a php library, for epub reader and maker. We can use it to read the ebook file and extract to cdn domain.
Installition
With Composer
composer require lywzx/php-epub
{ "require": { "lywzx/php-epub": "^0.0.2" } }
require 'vendor/autoload.php' use lywzx\php-epub\EpubParser; $epubParser = new EpubParser('./alice.epub');
Without Composer
Why are you not using composer? Download the php-epub latest release and put the contents of the ZIP archive into a directory in your project. Then require the file autoload.php to get all classes and dependencies loaded on need.
<?php require_once 'path_to_php-epub_directory/autoload.php'; use lywzx\php-epub\EpubParser; $epubParser = new EpubParser('./alice.epub');
epub parser use example
get ebook metinfo
$epubParser = new EpubParser('./alice.epub'); // open file and check file is a validated epub $epubParser->parse(); // parser file var_dump($epubParser->getTOC()); // you will get the book category tree, e.g 1.0 var_dump($epubParser->getDcItem()); // you will get the book meta info, e.g 1.1 var_dump($epubParser->getDcItem('rights')) // Public domain in the USA.
e.g 1.0
array(2) {
[1]=>
array(4) {
["id"]=>
string(4) "np-1"
["naam"]=>
string(22) "THE "STORYLAND" SERIES"
["src"]=>
string(65) "www.gutenberg.org@files@19033@19033-h@19033-h-0.htm#pgepubid00000"
["page_id"]=>
string(13) "pgepubid00000"
}
[3]=>
array(5) {
["id"]=>
string(4) "np-2"
["naam"]=>
string(32) "ALICE'S ADVENTURES IN WONDERLAND"
["src"]=>
string(65) "www.gutenberg.org@files@19033@19033-h@19033-h-0.htm#pgepubid00002"
["page_id"]=>
string(13) "pgepubid00002"
["children"]=>
array(11) {
[5]=>
array(5) {
["id"]=>
string(4) "np-3"
["naam"]=>
string(37) "SAM'L GABRIEL SONS & COMPANY NEW YORK"
["src"]=>
string(65) "www.gutenberg.org@files@19033@19033-h@19033-h-0.htm#pgepubid00004"
["page_id"]=>
string(13) "pgepubid00004"
["children"]=>
array(1) {
[7]=>
array(4) {
["id"]=>
string(4) "np-4"
["naam"]=>
string(57) "Copyright, 1916, by SAM'L GABRIEL SONS & COMPANY NEW YORK"
["src"]=>
string(65) "www.gutenberg.org@files@19033@19033-h@19033-h-0.htm#pgepubid00006"
["page_id"]=>
string(13) "pgepubid00006"
}
}
}
}
}
}
e.g 1.1
array(9) {
["rights"]=>
string(25) "Public domain in the USA."
["identifier"]=>
string(37) "http://www.gutenberg.org/ebooks/19033"
["contributor"]=>
string(15) "Gordon Robinson"
["creator"]=>
string(13) "Lewis Carroll"
["title"]=>
string(32) "Alice's Adventures in Wonderland"
["language"]=>
string(2) "en"
["subject"]=>
array(2) {
[0]=>
string(7) "Fantasy"
[1]=>
string(24) "Fantasy fiction, English"
}
["date"]=>
array(2) {
[0]=>
string(10) "2006-08-12"
[1]=>
string(32) "2010-02-16T12:34:12.754941+00:00"
}
["source"]=>
string(56) "http://www.gutenberg.org/files/19033/19033-h/19033-h.htm"
}
more example you can view example directory.
epub maker is in development.
document is on the way.
lywzx/php-epub 适用场景与选型建议
lywzx/php-epub 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.87k 次下载、GitHub Stars 达 23, 最近一次更新时间为 2019 年 04 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「parser」 「epub」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lywzx/php-epub 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lywzx/php-epub 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lywzx/php-epub 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easy to use SDK with grabber for multiple platforms at once like YouTube, Dailymotion, Facebook and more.
Book publishing application
An MT940 bank statement parser for PHP
A PHP library for processing EPUB files.
Laravel integration for the jsonapi.org parser
Smart compressed files extractor
统计信息
- 总下载量: 15.87k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-10