1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/standard/tests/serialize/bug26762.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

27 lines
414 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"