gaesi/validator

Gaesi Validator 库

v0.1.4 2020-11-02 18:16 UTC

This package is auto-updated.

Last update: 2024-09-27 04:47:39 UTC


README

一个用于通用验证的 PHP 库。

验证

  • Cpf
  • Cnpj
  • GS1 (Gtin, Sscc, GtinWithSn)
  • 校验码(mod 10, mod 11 和 mod 37)

用法

<?php

use Gaesi\Validator\CPF;
use Gaesi\Validator\GS1;
use Gaesi\Validator\Mod11;

CPF::validate("12345678909");      // return true
GS1::validateGs1("1234567890123"); // return false
Mod11::calcule("111222333");       // return "1112223339"
Mod11::validate("1112223339");     // return true