1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/ext/session/tests/bug51338.phpt
T
2024-08-24 16:33:45 +02:00

20 lines
403 B
PHP

--TEST--
Bug #51338 (URL-Rewriter should not get enabled if use_only_cookies is set to 1)
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.use_only_cookies=1
session.use_trans_sid=1
--FILE--
<?php
session_start();
print_r(ob_list_handlers());
?>
--EXPECT--
Deprecated: PHP Startup: Enabling session.use_trans_sid INI setting is deprecated in Unknown on line 0
Array
(
)