__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws\DynamoDb;
/**
* Special object to represent a DynamoDB set (SS/NS/BS) value.
*/
class SetValue implements \JsonSerializable, \Countable, \IteratorAggregate
{
/** @var array Values in the set as provided. */
private $values;
/**
* @param array $values Values in the set.
*/
public function __construct(array $values)
{
$this->values = $values;
}
/**
* Get the values formatted for PHP and JSON.
*
* @return array
*/
public function toArray()
{
return $this->values;
}
/**
* @return int
*/
#[\ReturnTypeWillChange]
public function count()
{
return count($this->values);
}
#[\ReturnTypeWillChange]
public function getIterator()
{
return new \ArrayIterator($this->values);
}
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->toArray();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception | Folder | 0777 |
|
|
| BinaryValue.php | File | 743 B | 0777 |
|
| DynamoDbClient.php | File | 13.58 KB | 0777 |
|
| LockingSessionConnection.php | File | 1.89 KB | 0777 |
|
| Marshaler.php | File | 9.52 KB | 0777 |
|
| NumberValue.php | File | 552 B | 0777 |
|
| SessionConnectionConfigTrait.php | File | 5.85 KB | 0777 |
|
| SessionConnectionInterface.php | File | 1017 B | 0777 |
|
| SessionHandler.php | File | 7.85 KB | 0777 |
|
| SetValue.php | File | 960 B | 0777 |
|
| StandardSessionConnection.php | File | 4.46 KB | 0777 |
|
| WriteRequestBatch.php | File | 9.34 KB | 0777 |
|