mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
13 lines
227 B
PHP
13 lines
227 B
PHP
--TEST--
|
|
Bug #66827: Session raises E_NOTICE when session name variable is array.
|
|
--INI--
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$_COOKIE[session_name()] = array();
|
|
session_start();
|
|
echo 'OK';
|
|
--EXPECTF--
|
|
OK
|