mirror of
https://github.com/php/php-src.git
synced 2025-01-21 11:13:38 +08:00
12 lines
182 B
PHP
12 lines
182 B
PHP
--TEST--
|
|
session_unset() without a initialized session
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
session_unset();
|
|
print "ok\n";
|
|
--EXPECT--
|
|
ok
|