PHP code example of 23g / zxcvbn-php-nl
1. Go to this page and download the library: Download 23g/zxcvbn-php-nl 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/ */
23g / zxcvbn-php-nl example snippets
use ZxcvbnPhp\Matchers\NL\DutchDictionaryMatch;
use ZxcvbnPhp\Matchers\NL\DutchReverseDictionaryMatch;
use ZxcvbnPhp\Zxcvbn;
$zxcvbn = new Zxcvbn();
$zxcvbn->addMatcher(DutchDictionaryMatch::class);
$zxcvbn->addMatcher(DutchReverseDictionaryMatch::class);
...
$result = $zxcvbn->passwordStrength('password');