- var_dump: documentation ( source)
- password_hash: documentation ( source)
- str_repeat: documentation ( source)
- password_verify: documentation ( source)
<?php
$hash = password_hash(str_repeat("a", 100), PASSWORD_DEFAULT);
var_dump(password_verify(str_repeat("a", 72), $hash));