File: pecl77900.phpt

package info (click to toggle)
php-memcache 8.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 784 kB
  • sloc: ansic: 5,074; xml: 830; php: 775; pascal: 53; sh: 24; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
PECL Bug #77900 (Memcache session handling, zend_mm_heap corrupted)
--SKIPIF--
<?php include 'connect.inc'; ?>
--FILE--
<?php
include 'connect.inc';

ini_set('session.save_handler', 'memcache');
ini_set('session.save_path', "tcp://$host:$port");
session_start();
$_SESSION['test']=true;
session_write_close();
session_start();
var_dump($_SESSION);
session_write_close();
--EXPECT--
array(1) {
  ["test"]=>
  bool(true)
}