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/bug38377.phpt
2021-06-11 16:27:50 +02:00

16 lines
260 B
PHP

--TEST--
Bug #38377 (session_destroy() gives warning after session_regenerate_id())
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
session_start();
session_regenerate_id();
session_destroy();
echo "Done\n";
?>
--EXPECT--
Done