1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
session_virtual.php
См. документацию.
1<?php
8
15{
19 public static function isStorageEnabled()
20 {
21 return defined("BX_SECURITY_SESSION_VIRTUAL") && BX_SECURITY_SESSION_VIRTUAL == true;
22 }
23
27 public static function Init()
28 {
29 return true;
30 }
31
37 public static function open($savePath, $sessionName)
38 {
39 return true;
40 }
41
42 public static function close()
43 {
44 return true;
45 }
46
51 public static function read($id)
52 {
53 return "";
54 }
55
61 public static function write($id, $sessionData)
62 {
63 return true;
64 }
65
70 public static function destroy($id)
71 {
72 return true;
73 }
74
78 public static function gc($maxLifeTime)
79 {
80 }
81}
const BX_SECURITY_SESSION_VIRTUAL
Определения index.php:2
static destroy($id)
Определения session_virtual.php:70
static close()
Определения session_virtual.php:42
static read($id)
Определения session_virtual.php:51
static gc($maxLifeTime)
Определения session_virtual.php:78
static write($id, $sessionData)
Определения session_virtual.php:61
static Init()
Определения session_virtual.php:27
static isStorageEnabled()
Определения session_virtual.php:19
static open($savePath, $sessionName)
Определения session_virtual.php:37