1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/ext/hash/tests/serialize-context.phpt

14 lines
246 B
PHP

--TEST--
Hash: Context serialization
--FILE--
<?php
$h = hash_init('md5');
try {
var_dump(serialize($h));
} catch (Exception $e) {
echo "Exception: {$e->getMessage()}\n";
}
--EXPECT--
Exception: Serialization of 'HashContext' is not allowed