kiczort/polish-validator
最新稳定版本:v1.2.0
Composer 安装命令:
composer require kiczort/polish-validator
包简介
Validators for Polish identification numbers: PESEL, NIP, REGON.
README 文档
README
This is PHP library with validators for Polish identification numbers like: PESEL, NIP, REGON.
Installation
The recommended way to install this library is Composer.
# Install Composer curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version:
php composer.phar require kiczort/polish-validator
Documentation
Example of use PeselValidator:
There are PESEL numbers with errors in real word, so in case of this validator checksum checking is only for strict mode. In case of none strict mode it checks length, used chars and correctness of date of birth.
... use Kiczort\PolishValidator\PeselValidator; ... $validator = new PeselValidator(); if ($validator->isValid('123456789')) { // none strict mode ... } ... if ($validator->isValid('123456789', array('strict' => true))) { // with strict mode ... } ...
Example of use NipValidator:
... use Kiczort\PolishValidator\NipValidator; ... $validator = new NipValidator(); if ($validator->isValid('123456789')) { ... } ...
Example of use RegonValidator:
... use Kiczort\PolishValidator\RegonValidator; ... $validator = new RegonValidator(); if ($validator->isValid('123456789')) { ... } ...
Example of use PwzValidator:
... use Kiczort\PolishValidator\PwzValidator; ... $validator = new PwzValidator(); if ($validator->isValid('1234567')) { ... } ...
Bug tracking
GitHub issues. If you have found bug, please create an issue.
MIT License
License can be found here.
统计信息
- 总下载量: 115.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 1
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-07-19