1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/session/tests/bug51338.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

17 lines
277 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
(
)