-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpudlSession.modern.php
72 lines (45 loc) · 1.91 KB
/
pudlSession.modern.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
trait pudlSession_trait {
////////////////////////////////////////////////////////////////////////////
// INITIALIZE SESSION
// http://php.net/manual/en/sessionhandlerinterface.open.php
////////////////////////////////////////////////////////////////////////////
public function open($path, $name) : bool {
return $this->_open($path, $name);
}
////////////////////////////////////////////////////////////////////////////
// CLOSE THE SESSION
// http://php.net/manual/en/sessionhandlerinterface.close.php
////////////////////////////////////////////////////////////////////////////
public function close() : bool {
return $this->_close();
}
////////////////////////////////////////////////////////////////////////////
// READ SESSION DATA
// http://php.net/manual/en/sessionhandlerinterface.read.php
////////////////////////////////////////////////////////////////////////////
public function read($id) : string|false {
return $this->_read($id);
}
////////////////////////////////////////////////////////////////////////////
// WRITE SESSION DATA
// http://php.net/manual/en/sessionhandlerinterface.write.php
////////////////////////////////////////////////////////////////////////////
public function write($id, $data) : bool {
return $this->_write($id, $data);
}
////////////////////////////////////////////////////////////////////////////
// DESTROY A SESSION
// http://php.net/manual/en/sessionhandlerinterface.destroy.php
////////////////////////////////////////////////////////////////////////////
public function destroy($id) : bool {
return $this->_destroy($id);
}
////////////////////////////////////////////////////////////////////////////
// CLEANUP OLD SESSIONS
// http://php.net/manual/en/sessionhandlerinterface.gc.php
////////////////////////////////////////////////////////////////////////////
public function gc($max) : int|false {
return $this->_gc($max);
}
}