php-src/ext/standard/tests/serialize/bug26762.phpt
Marcus Boerger 3ab7b87143 Add new test
2004-01-02 03:24:38 +00:00

28 lines
505 B
PHP
Executable File

--TEST--
Bug #26762 (unserialize() produces lowercase classnames)
--SKIPIF--
<?php
if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed');
if (class_exists('autoload_root')) die('skip Autoload test classes exist already');
?>
--FILE--
<?php
ini_set('unserialize_callback_func','check');
function check($name) {
var_dump($name);
throw new exception;
}
try {
@unserialize('O:3:"FOO":0:{}');
}
catch (Exception $e) {
/* ignore */
}
?>
--EXPECTF--
string(3) "FOO"