1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/session/tests/bug68063.phpt
2021-06-11 16:27:50 +02:00

27 lines
561 B
PHP

--TEST--
Bug #68063 (Empty session IDs do still start sessions)
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.use_strict_mode=0
session.sid_length=40
session.sid_bits_per_character=4
--FILE--
<?php
// Empty session ID may happen by browser bugs
// Could also be set with a cookie like "PHPSESSID=; path=/"
session_id('');
// Start the session with empty string should result in new session ID
var_dump(session_start());
// Returns newly created session ID
var_dump(session_id());
?>
--EXPECTF--
bool(true)
string(40) "%s"