2010-07-17 18:46:28 +09:00
|
|
|
--TEST--
|
|
|
|
Check for serialization handler, ini-directive
|
|
|
|
--SKIPIF--
|
2010-12-27 11:09:14 +09:00
|
|
|
<?php
|
|
|
|
if (version_compare(PHP_VERSION, '5.2.0') < 0) {
|
|
|
|
echo "skip tests in PHP 5.2 or newer";
|
|
|
|
}
|
2010-07-17 18:46:28 +09:00
|
|
|
--INI--
|
|
|
|
session.serialize_handler=msgpack
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
if(!extension_loaded('msgpack')) {
|
|
|
|
dl('msgpack.' . PHP_SHLIB_SUFFIX);
|
|
|
|
}
|
|
|
|
|
|
|
|
$output = '';
|
|
|
|
|
|
|
|
function open($path, $name) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function read($id) {
|
|
|
|
global $output;
|
|
|
|
return pack('H*', '81a3666f6f01');
|
|
|
|
}
|
|
|
|
|
|
|
|
function write($id, $data) {
|
|
|
|
global $output;
|
|
|
|
$output .= bin2hex($data) . PHP_EOL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function destroy($id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function gc($time) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
|
|
|
|
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
echo ++$_SESSION['foo'], PHP_EOL;
|
|
|
|
|
|
|
|
session_write_close();
|
|
|
|
|
|
|
|
echo $output;
|
|
|
|
var_dump($_SESSION);
|
|
|
|
?>
|
|
|
|
--EXPECT--
|
|
|
|
2
|
2010-09-29 08:47:06 +09:00
|
|
|
82c001a3666f6f02
|
2010-07-17 18:46:28 +09:00
|
|
|
array(1) {
|
|
|
|
["foo"]=>
|
|
|
|
int(2)
|
|
|
|
}
|