| Server IP : 23.254.227.96 / Your IP : 216.73.216.183 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/proc/thread-self/root/usr/local/src/memcache-8.0/tests/ |
Upload File : |
--TEST--
memcache multi host save path function
--SKIPIF--
<?php
include 'connect.inc';
?>
--FILE--
<?php
ob_start();
include 'connect.inc';
$session_save_path = "tcp://$host:$port,tcp://$host2:$port2";
ini_set('session.save_handler', 'memcache');
ini_set('memcache.session_save_path', $session_save_path);
session_id('abcdef');
session_start();
$_SESSION['bof.test'] = 42;
session_write_close();
$_SESSION = array();
function test() {
session_name('SID_bof');
session_id('abcdef');
if (!session_start()) {
var_dump('session_start failed');
exit(1);
}
var_dump($_SESSION);
$_SESSION['bof.test'] = 42;
session_write_close();
}
ini_set('memcache.session_save_path', "tcp://$host:$port");
test();
ini_set('memcache.session_save_path', "tcp://$host2:$port2");
test();
ini_set('memcache.session_save_path', "tcp://$host:$port, tcp://$host2:$port2");
test();
echo "Done\n";
ob_flush();
?>
--EXPECTF--
array(1) {
["bof.test"]=>
int(42)
}
array(1) {
["bof.test"]=>
int(42)
}
array(1) {
["bof.test"]=>
int(42)
}
Done