PHP code example of shfarzam / data-validation

1. Go to this page and download the library: Download shfarzam/data-validation library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

shfarzam / data-validation example snippets


use shfarzam\DataValidation\Validator;

if (Validator::validateEmail('[email protected]')) {
    // Valid email address
} else {
    // Invalid email address
}

use shfarzam\DataValidation\Validator;

if (Validator::validateURL('https://www.example.com')) {
    // Valid URL
} else {
    // Invalid URL
}

use shfarzam\DataValidation\Validator;

$password = 'securepassword';

// validatePassword(Password, MinLenght, CheckComplexity)
if (Validator::validatePassword($password, 8, True / False)) {
    // Valid password
} else {
    // Invalid password
}