leonardomdornelas / agv-validator
此包的最新版本(dev-master)没有提供许可证信息。
为 ZF2 提供的 CPF 和 CNPJ 验证器和视图辅助工具。
dev-master
2015-08-11 17:23 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-09-28 17:54:43 UTC
README
为 Zend Framework 2 创建的模块,它包含用于 CPF 和 CNPJ 的 Validators 和 Helpers,可以方便地使用。
在 conf/application.config.php 中启用 AgvValidator 模块
验证器
public function getInputFilterSpecification()
{
return array(
// Valida CNPJ
'cnpj' => array(
'required' => true,
'filters' => array(
array('name' => 'Digits'),
),
'validators' => array(
array(
'name' => 'AgvValidator\Validator\Cnpj',
),
),
),
// Valida CPF
'cpf' => array(
'required' => true,
'filters' => array(
array('name' => 'Digits'),
),
'validators' => array(
array(
'name' => 'AgvValidator\Validator\Cpf',
),
),
),
);
}
在视图中使用的辅助器
$this->cnpjMask('96268838000130');
$this->cpfMask('83411671238');