mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
14 lines
237 B
PHP
14 lines
237 B
PHP
--TEST--
|
|
Bug #38377 (session_destroy() gives warning after session_regenerate_id())
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
session_start();
|
|
session_regenerate_id();
|
|
session_destroy();
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
Done
|