summaryrefslogtreecommitdiff
path: root/ext/session/tests/session_encode_variation8.phpt
blob: 57c9e17bd48c8c9c30a0e502ce6dcc31f9032c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
--TEST--
Test session_encode() function : variation
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.serialize_handler=blah
--FILE--
<?php

ob_start();

/* 
 * Prototype : string session_encode(void)
 * Description : Encodes the current session data as a string
 * Source code : ext/session/session.c 
 */

echo "*** Testing session_encode() : variation ***\n";

var_dump(session_start());
$_SESSION["foo"] = 1234567890;
$encoded = session_encode();
var_dump(base64_encode($encoded));
var_dump(session_destroy());

echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_encode() : variation ***

Warning: session_start(): Unknown session.serialize_handler. Failed to decode session object. in %s on line %d
bool(true)

Warning: session_encode(): Unknown session.serialize_handler. Failed to encode session object. in %s on line %d
string(0) ""
bool(true)
Done