PHP Package: zendframework/zend-validator

Zend Validator is a PHP library for data validation providing a wide range of validation types and customizable validation rules for input validation in web applications.

Current Version: release-2.13.0
Last Updated: 2019-12-28
PHP Requirement: ^7.1
Dependencies:
zendframework/zend-filter
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Zend Validator is a robust PHP library that offers comprehensive data validation capabilities, ensuring that input data meets defined criteria. With a variety of validation types and customizable rules, this library enhances the security and reliability of web applications by preventing invalid data entry.

📦 Show all available classes🔗 View on GitHub

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/zendframework/zend-validator/{lib_version}/loader.php';
require_once 'libs/zendframework/zend-filter/{lib_version}/loader.php';

use Zend\Validator\EmailAddress;
use Zend\Validator\StringLength;

$obj = new EmailAddress();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.