php-8.0.30-src/ext/hash/tests/hash_error.phpt

21 lines
472 B
PHP

--TEST--
Hash: hash() function : error conditions
--FILE--
<?php
echo "*** Testing hash() : error conditions ***\n";
echo "\n-- Testing hash() function with invalid hash algorithm --\n";
try {
hash('foo', '');
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
*** Testing hash() : error conditions ***
-- Testing hash() function with invalid hash algorithm --
hash(): Argument #1 ($algo) must be a valid hashing algorithm