1--TEST--
2Test session_encode() function : variation
3--SKIPIF--
4<?php include('skipif.inc'); ?>
5--INI--
6session.serialize_handler=php_binary
7--FILE--
8<?php
9
10ob_start();
11
12/*
13 * Prototype : string session_encode(void)
14 * Description : Encodes the current session data as a string
15 * Source code : ext/session/session.c
16 */
17
18echo "*** Testing session_encode() : variation ***\n";
19
20var_dump(session_start());
21$_SESSION["foo"] = 1234567890;
22$encoded = session_encode();
23var_dump(base64_encode($encoded));
24var_dump(session_destroy());
25
26echo "Done";
27ob_end_flush();
28?>
29--EXPECT--
30*** Testing session_encode() : variation ***
31bool(true)
32string(24) "A2Zvb2k6MTIzNDU2Nzg5MDs="
33bool(true)
34Done
35