mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
0c9bfa96b2
Fix a test. Use proper types.
21 lines
535 B
PHP
21 lines
535 B
PHP
--TEST--
|
|
session_decode(); should not segfault
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.use_cookies=0
|
|
session.cache_limiter=
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
session_decode("garbage data and no session started");
|
|
session_decode("userid|s:5:\"mazen\";chatRoom|s:1:\"1\";");
|
|
print "I live\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: session_decode(): Session is not active. You cannot decode session data in %s on line %d
|
|
|
|
Warning: session_decode(): Session is not active. You cannot decode session data in %s on line %d
|
|
I live
|