File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / session / tests / 028.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:01 2012 UTC (12 years, 6 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>