PHP Classes

File: application/modules/extensions/aws/Aws/DynamoDb/BinaryValue.php

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   application/modules/extensions/aws/Aws/DynamoDb/BinaryValue.php   Download  
File: application/modules/extensions/aws/Aws/DynamoDb/BinaryValue.php
Role: Application script
Content type: text/plain
Description: Application script
Class: Pretty PHP S3 Files Manager
Web based interface to manage files in Amazon S3
Author: By
Last change:
Date: 8 years ago
Size: 708 bytes
 

Contents

Class file image Download
<?php
namespace Aws\DynamoDb;

use
GuzzleHttp\Psr7;

/**
 * Special object to represent a DynamoDB binary (B) value.
 */
class BinaryValue implements \JsonSerializable
{
   
/** @var string Binary value. */
   
private $value;

   
/**
     * @param mixed $value A binary value compatible with Guzzle streams.
     *
     * @see GuzzleHttp\Stream\Stream::factory
     */
   
public function __construct($value)
    {
        if (!
is_string($value)) {
           
$value = Psr7\stream_for($value);
        }
       
$this->value = (string) $value;
    }

    public function
jsonSerialize()
    {
        return
$this->value;
    }

    public function
__toString()
    {
        return
$this->value;
    }
}