1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 21:22:13 +02:00
Files
archived-php-src/ext/session/tests/bug69111.phpt
2021-06-11 16:27:50 +02:00

40 lines
815 B
PHP

--TEST--
Bug #69111 Crash in SessionHandler::read()
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
$sh = new SessionHandler;
session_set_save_handler($sh);
$savePath = ini_get('session.save_path');
$sessionName = ini_get('session.name');
// session_start(); // Uncommenting this makes it not crash when reading the session (see below), but it will not return any data.
try {
$sh->open($savePath, $sessionName);
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
try {
$sh->write("foo", "bar");
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
try {
$sh->read("");
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
Session is not active
Session is not active
Session is not active