mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
17 lines
303 B
PHP
17 lines
303 B
PHP
--TEST--
|
|
$session_array = explode(";", session_encode()); should not segfault
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.use_cookies=0
|
|
session.cache_limiter=
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
$session_array = explode(";", @session_encode());
|
|
print "I live\n";
|
|
?>
|
|
--EXPECT--
|
|
I live
|