xref: /php-src/ext/session/tests/bug51338.phpt (revision c5bce0d8)
1--TEST--
2Bug #51338 (URL-Rewriter should not get enabled if use_only_cookies is set to 1)
3--EXTENSIONS--
4session
5--SKIPIF--
6<?php include('skipif.inc'); ?>
7--INI--
8session.use_only_cookies=1
9session.use_trans_sid=1
10--FILE--
11<?php
12session_start();
13print_r(ob_list_handlers());
14?>
15--EXPECT--
16Deprecated: PHP Startup: Enabling session.use_trans_sid INI setting is deprecated in Unknown on line 0
17Array
18(
19)
20