11 lines
253 B
Plaintext
Executable File
11 lines
253 B
Plaintext
Executable File
<?php
|
|
Interface LtSessionStore
|
|
{
|
|
public function open($save_path, $name);
|
|
public function close();
|
|
public function read($id);
|
|
public function write($id, $data);
|
|
public function destroy($id);
|
|
public function gc($maxlifetime=0);
|
|
}
|