biblys/isbn
最新稳定版本:3.2.39
Composer 安装命令:
composer require biblys/isbn
包简介
A PHP library to convert and validate ISBNs
README 文档
README
biblys/isbn can be used to:
- validate a string against the ISBN-10, ISBN-13 and EAN-13 formats
- convert an ISBN to ISBN-10, ISBN-13, EAN-13, GTIN-14 and ISBN-A/DOI formats
- parse an ISBN to extract registration agency, publisher code, publication code, checksum, etc.
Installation
- Requirements: PHP 7.2 or above
Install with composer:
composer require biblys/isbn:~3.0
Usage
Convert
Use case: converting an EAN (9782843449499) to an ISBN-13 (978-2-84344-949-9).
<?php use Biblys\Isbn\Isbn; try { $input = "9782843449499"; $isbn13 = Isbn::convertToIsbn13($input); echo "ISBN-13: $isbn13"; // Prints ISBN-13: 978-2-84344-949-9 } catch(Exception $e) { echo "An error occurred while attempting to format ISBN $input: ".$e->getMessage(); }
All formatting methods:
Isbn::convertToIsbn10Isbn::convertToIsbn13Isbn::convertToEan13Isbn::convertToGtin14Isbn::convertToIsbnA
Validate
Use case: validating an incorrectly formed ISBN-13 (978-2-843-44949-9, should be 978-2-84344-949-9).
<?php use Biblys\Isbn\Isbn; try { $input = "978-2-843-44949-9"; Isbn::validateAsIsbn13($input); echo "ISBN $input is valid!"; } catch(Exception $e) { // Will throw because third hyphen is misplaced echo "ISBN $input is invalid: ".$e->getMessage(); }
All validating methods:
Isbn::validateAsIsbn10Isbn::validateAsIsbn13Isbn::validateAsEan13Isbn::isParsable
Learn more about validating ISBNs
Parse
Use case: extracting the publisher code from an ISBN.
<?php use Biblys\Isbn\Isbn; $input = "9782956420132"; $isbn = Isbn::parse($input); echo $isbn->getRegistrantElement(); // Prints "9564201"
Isbn::parse returns a ParsedIsbn object implementing the following methods:
ParsedIsbn->getGs1Element:: EAN product codeParsedIsbn->getRegistrationGroupElement: Country, geographical region or language aera codeParsedIsbn->getRegistrantElement: Publisher (or imprint within a group) codeParsedIsbn->getPublicationElement: Publication codeParsedIsbn->getCheckDigit: Checksum used for validation
Development
Using Gitpod
You can start a dev environment by clicking
and start hacking in your browser right away!
Locally
If you'd rather set up a local dev environment, you'll need:
- PHP 7.x
- Composer
- (Optional) Docker to run tests and debug against different version of PHP
Clone this repository and run composer install to get started!
Tests
Run tests with PHPUnit:
composer install composer test
Run tests in a docker container:
composer docker:test
Run tests in a docker container using a specific PHP version:
PHP_VERSION=7.1 composer docker:test
ISBN ranges update
New ISBN ranges may be added from time to time by the International ISBN Agency. Whenever it happens, this library must be updated. If a range update is necessary, please open an issue on GitHub. You can also open a pull request after updating the ranges your self with the following commands:
composer install composer run update-ranges
Or using a docker container:
composer docker:update-ranges
Create a minor release after ranges autoupdate
read "PR_NUMBER?Pull request number: " gh pr merge --auto -dr "$PR_NUMBER" \ && git fetch --tags \ && CURRENT_VERSION=$(git tag --sort=-v:refname | head -n 1) \ && IFS='.' read -r major minor patch <<< "$CURRENT_VERSION" \ && NEW_VERSION="$major.$minor.$((patch + 1))" \ && read "RELEASE_NOTES?Release notes: " \ && gh release create "$NEW_VERSION" --title "$NEW_VERSION" --notes "$RELEASE_NOTES"
Changelog
统计信息
- 总下载量: 327.64k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 55
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-03-01