mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
13 lines
299 B
PHP
13 lines
299 B
PHP
--TEST--
|
|
session_start() with partitioned cookies - header test
|
|
--EXTENSIONS--
|
|
session
|
|
--FILE--
|
|
<?php
|
|
session_id('12345');
|
|
session_set_cookie_params(["secure" => true, "partitioned" => true]);
|
|
session_start();
|
|
?>
|
|
--EXPECTHEADERS--
|
|
Set-Cookie: PHPSESSID=12345; path=/; secure; Partitioned
|
|
--EXPECT--
|