xref: /PHP-7.4/ext/session/tests/bug51338.phpt (revision 8a936408)
1--TEST--
2Bug #51338 (URL-Rewriter should not get enabled if use_only_cookies is set to 1)
3--SKIPIF--
4<?php include('skipif.inc'); ?>
5--INI--
6session.use_only_cookies=1
7session.use_trans_sid=1
8--FILE--
9<?php
10session_start();
11print_r(ob_list_handlers());
12--EXPECT--
13Array
14(
15)
16