mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
14 lines
228 B
PHP
14 lines
228 B
PHP
--TEST--
|
|
Bug #80774 (session_name() problem with backslash)
|
|
--EXTENSIONS--
|
|
session
|
|
--FILE--
|
|
<?php
|
|
session_name("foo\\bar");
|
|
session_id('12345');
|
|
session_start();
|
|
?>
|
|
--EXPECTHEADERS--
|
|
Set-Cookie: foo\bar=12345; path=/
|
|
--EXPECT--
|