mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
16 lines
274 B
PHP
16 lines
274 B
PHP
--TEST--
|
|
Bug #51338 (URL-Rewriter should not get enabled if use_only_cookies is set to 1)
|
|
--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--
|
|
Array
|
|
(
|
|
)
|