1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/session/tests/010.phpt
2025-06-23 14:57:13 +02:00

19 lines
334 B
PHP

--TEST--
$session_array = explode(";", session_encode()); should not segfault
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.use_cookies=0
session.cache_limiter=
--FILE--
<?php
error_reporting(E_ALL);
$session_array = explode(";", (string)@session_encode());
print "I live\n";
?>
--EXPECT--
I live