mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
* Unify headers already sent errors Now whenever we need to check where headers were already sent in ext/session, we call a single location that prints where, keeping it consistent output wise. * Unify session aready started errors Similar to the one for headers. * Also change session active checks too This usually go hand in hand with the headers already sent checks, but is in a separate commit because of the amount of tests it changes.
43 lines
900 B
PHP
43 lines
900 B
PHP
--TEST--
|
|
a script should not be able to modify session.use_trans_sid
|
|
--EXTENSIONS--
|
|
session
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.use_trans_sid=0
|
|
session.use_cookies=0
|
|
session.use_strict_mode=0
|
|
session.cache_limiter=
|
|
session.name=PHPSESSID
|
|
session.serialize_handler=php
|
|
session.save_handler=files
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
session_id("test014");
|
|
session_start();
|
|
|
|
?>
|
|
<a href="/link">
|
|
<?php
|
|
ini_set("session.use_trans_sid","1");
|
|
?>
|
|
<a href="/link">
|
|
<?php
|
|
ini_set("session.use_trans_sid","0");
|
|
?>
|
|
<a href="/link">
|
|
<?php
|
|
session_destroy();
|
|
?>
|
|
--EXPECTF--
|
|
<a href="/link">
|
|
|
|
Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %s on line %d) in %s on line %d
|
|
<a href="/link">
|
|
|
|
Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %s on line %d) in %s on line %d
|
|
<a href="/link">
|