mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
21 lines
378 B
PHP
21 lines
378 B
PHP
--TEST--
|
|
Bug #60860 (session.save_handler=user without defined function core dumps)
|
|
--SKIPIF--
|
|
<?php
|
|
include('skipif.inc');
|
|
?>
|
|
--INI--
|
|
session.save_handler=user
|
|
display_errors=off
|
|
--FILE--
|
|
<?php
|
|
|
|
session_start();
|
|
echo "ok\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
PHP Recoverable fatal error: PHP Startup: Cannot set 'user' save handler by ini_set() or session_module_name() in Unknown on line 0
|
|
ok
|
|
|