File tree 3 files changed +29
-0
lines changed
3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ Fixes
118
118
<file role =' test' name =' session_basic.phpt' />
119
119
<file role =' test' name =' session_basic2.phpt' />
120
120
<file role =' test' name =' session_basic3.phpt' />
121
+ <file role =' test' name =' session_persistent.phpt' />
121
122
<file role =' test' name =' set_large.phpt' />
122
123
<file role =' test' name =' setoptions.phpt' />
123
124
<file role =' test' name =' touch_binary.phpt' />
Original file line number Diff line number Diff line change @@ -351,6 +351,7 @@ PS_OPEN_FUNC(memcached)
351
351
else {
352
352
efree (plist_key );
353
353
PS_SET_MOD_DATA (memc );
354
+ memcached_server_list_free (servers );
354
355
return SUCCESS ;
355
356
}
356
357
}
Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ Session persistent
3
+ --SKIPIF--
4
+ <?php
5
+ include dirname (__FILE__ ) . "/skipif.inc " ;
6
+ if (!Memcached::HAVE_SESSION ) print "skip " ;
7
+ ?>
8
+ --INI--
9
+ session.save_handler=memcached
10
+ memcached.sess_persistent=1
11
+ --FILE--
12
+ <?php
13
+ include dirname (__FILE__ ) . '/config.inc ' ;
14
+ ini_set ('session.save_path ' , MEMC_SERVER_HOST . ': ' . MEMC_SERVER_PORT );
15
+
16
+ session_start ();
17
+ $ _SESSION ['test ' ]=true ;
18
+ session_write_close ();
19
+ session_start ();
20
+ var_dump ($ _SESSION );
21
+ session_write_close ();
22
+ ?>
23
+ --EXPECT--
24
+ array(1) {
25
+ ["test"]=>
26
+ bool(true)
27
+ }
You can’t perform that action at this time.
0 commit comments