1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/ext/standard/tests/serialize/bug26762.phpt
T
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

27 lines
427 B
PHP

--TEST--
Bug #26762 (unserialize() produces lowercase classnames)
--SKIPIF--
<?php
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 */
}
?>
--EXPECT--
string(3) "FOO"