OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
DynamoDb
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
BinaryValue.php
780 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
DynamoDbClient.php
13.78 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
Exception
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
LockingSessionConnection.php
1.94 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
Marshaler.php
9.83 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
NumberValue.php
582 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
SessionConnectionConfigTrait.php
6.11 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
SessionConnectionInterface.php
1.04 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
SessionHandler.php
8.08 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
SetValue.php
1010 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
StandardSessionConnection.php
4.61 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
WriteRequestBatch.php
9.6 KB
05/19/2025 10:07:16 AM
rw-r--r--
Editing: SessionConnectionInterface.php
Close
<?php namespace Aws\DynamoDb; /** * The session connection provides the underlying logic for interacting with * Amazon DynamoDB and performs all of the reading and writing operations. */ interface SessionConnectionInterface { /** * Reads session data from DynamoDB * * @param string $id Session ID * * @return array */ public function read($id); /** * Writes session data to DynamoDB * * @param string $id Session ID * @param string $data Serialized session data * @param bool $isChanged Whether or not the data has changed * * @return bool */ public function write($id, $data, $isChanged); /** * Deletes session record from DynamoDB * * @param string $id Session ID * * @return bool */ public function delete($id); /** * Performs garbage collection on the sessions stored in the DynamoDB * * @return bool */ public function deleteExpired(); }