ru_php/ext/session/tests/user_session_module/bug55688.phpt

21 lines
347 B
Plaintext
Raw Permalink Normal View History

--TEST--
Bug #55688 (Crash when calling SessionHandler::gc())
--EXTENSIONS--
session
--INI--
html_errors=0
session.save_handler=files
--FILE--
<?php
ini_set('session.save_handler', 'files');
$x = new SessionHandler;
try {
$x->gc(1);
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
Session is not active