| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/3rdparty/aws/aws-sdk-php/src/DynamoDb/ |
Upload File : |
<?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;
}
public function count()
{
return count($this->values);
}
public function getIterator()
{
return new \ArrayIterator($this->values);
}
public function jsonSerialize()
{
return $this->toArray();
}
}