ifunk / abn-validator
PHP的ABN和ACN验证
v1.0.1
2019-06-02 22:11 UTC
This package is auto-updated.
Last update: 2024-08-29 04:31:04 UTC
README
由Paul Ferrett编写
安装
composer require ifunk/abn-validator
用法
AbnValidator::isValidAbn('53 004 085 616'); // -> true AbnValidator::isValidAbn('0'); // -> false AbnValidator::isValidAcn('005 749 986'); // -> true AbnValidator::isValidAcn('53 004 085 616'); // -> false (that's an ABN!) AbnValidator::isValidAbnOrAcn('53 004 085 616'); // -> true AbnValidator::isValidAbnOrAcn('005 749 986'); // -> true AbnValidator::isValidAbnOrAcn('0'); // -> false