AWS SDK for PHP
  • Namespace
  • Class
  • Tree
  • Download

Namespaces

  • Aws
    • AutoScaling
      • Enum
      • Exception
    • CloudFormation
      • Enum
      • Exception
    • CloudFront
      • Enum
      • Exception
    • CloudFront_2012_05_05
    • CloudHsm
      • Exception
    • CloudSearch
      • Enum
      • Exception
    • CloudSearch_2011_02_01
    • CloudSearchDomain
      • Exception
    • CloudTrail
      • Exception
    • CloudWatch
      • Enum
      • Exception
    • CloudWatchLogs
      • Exception
    • CodeCommit
      • Exception
    • CodeDeploy
      • Exception
    • CodePipeline
      • Exception
    • CognitoIdentity
      • Exception
    • CognitoSync
      • Exception
    • Common
      • Client
      • Command
      • Credentials
      • Enum
      • Exception
        • Parser
      • Hash
      • InstanceMetadata
        • Waiter
      • Iterator
      • Model
        • MultipartUpload
      • Signature
      • Waiter
    • ConfigService
      • Exception
    • DataPipeline
      • Enum
      • Exception
    • DeviceFarm
      • Exception
    • DirectConnect
      • Enum
      • Exception
    • DirectoryService
      • Exception
    • DynamoDb
      • Enum
      • Exception
      • Model
        • BatchRequest
      • Session
        • LockingStrategy
    • DynamoDb_2011_12_05
    • DynamoDbStreams
      • Exception
    • Ec2
      • Enum
      • Exception
      • Iterator
    • Ecs
      • Exception
    • Efs
      • Exception
    • ElastiCache
      • Enum
      • Exception
    • ElasticBeanstalk
      • Enum
      • Exception
    • ElasticFileSystem
    • ElasticLoadBalancing
      • Exception
    • ElasticTranscoder
      • Exception
    • Emr
      • Enum
      • Exception
    • Glacier
      • Enum
      • Exception
      • Model
        • MultipartUpload
    • Iam
      • Enum
      • Exception
    • ImportExport
      • Enum
      • Exception
    • Kinesis
      • Enum
      • Exception
    • Kms
      • Exception
    • Lambda
      • Exception
    • MachineLearning
      • Exception
    • OpsWorks
      • Enum
      • Exception
    • Rds
      • Enum
      • Exception
    • Redshift
      • Enum
      • Exception
    • Route53
      • Enum
      • Exception
    • Route53Domains
      • Exception
    • S3
      • Command
      • Enum
      • Exception
        • Parser
      • Iterator
      • Model
        • MultipartUpload
      • Sync
    • Ses
      • Enum
      • Exception
    • SimpleDb
      • Exception
    • Sns
      • Exception
      • MessageValidator
        • Exception
    • Sqs
      • Enum
      • Exception
    • Ssm
      • Exception
    • StorageGateway
      • Enum
      • Exception
    • Sts
      • Exception
    • Support
      • Exception
    • Swf
      • Enum
      • Exception
    • WorkSpaces
      • Exception
  • Guzzle
    • Batch
      • Exception
    • Cache
    • Common
      • Exception
    • Http
      • Curl
      • Exception
      • Message
        • Header
      • QueryAggregator
    • Inflection
    • Iterator
    • Log
    • Parser
      • Cookie
      • Message
      • UriTemplate
      • Url
    • Plugin
      • Async
      • Backoff
      • Cache
      • Cookie
        • CookieJar
        • Exception
      • ErrorResponse
        • Exception
      • History
      • Log
      • Md5
      • Mock
      • Oauth
    • Service
      • Builder
      • Command
        • Factory
        • LocationVisitor
          • Request
          • Response
      • Description
      • Exception
      • Resource
    • Stream
  • PHP

Classes

  • AbstractEntityBodyDecorator
  • CachingEntityBody
  • Client
  • EntityBody
  • IoEmittingEntityBody
  • Mimetypes
  • QueryString
  • ReadLimitEntityBody
  • RedirectPlugin
  • StaticClient
  • Url

Interfaces

  • ClientInterface
  • EntityBodyInterface
NOTE: For Version 3 of the AWS SDK for PHP, please see the V3 User Guide and V3 API Reference.

Class CachingEntityBody

EntityBody decorator that can cache previously read bytes from a sequentially read tstream

Guzzle\Http\AbstractEntityBodyDecorator implements Guzzle\Http\EntityBodyInterface
Extended by Guzzle\Http\CachingEntityBody
Namespace: Guzzle\Http
Located at Guzzle/Http/CachingEntityBody.php

Methods summary

  • public __construct ( Guzzle\Http\EntityBodyInterface $body )

    We will treat the buffer object as the body of the entity body

  • public __toString ( )

    Will give the contents of the buffer followed by the exhausted remote stream.

  • public getSize ( )

    Get the size of the stream if able

  • public seek ( int $offset, int $whence = SEEK_SET )

    Seek to a position in the stream

  • public rewind ( )

    Rewind to the beginning of the stream

  • public setRewindFunction ( mixed $callable )

    Does not support custom rewind functions

  • public read ( int $length )

    Read data from the stream

  • public write ( string $string )

    Write data to the stream

  • public readLine ( int $maxLength = null )

    Read a line from the stream up to the maximum allowed buffer length

  • public isConsumed ( )

    Check if the stream has been consumed

  • public close ( )

    Close both the remote stream and buffer stream

  • public setStream ( resource $stream, int $size = 0 )

    Set the stream that is wrapped by the object

  • public getContentType ( )

    Guess the Content-Type of a local stream

  • public getContentEncoding ( )

    Get the Content-Encoding of the EntityBody

  • public getMetaData ( string $key = null )

    Get stream metadata

  • public getStream ( )

    Get the stream resource

  • public getWrapper ( )

    Get the stream wrapper type

  • public getWrapperData ( )

    Wrapper specific data attached to this stream.

  • public getStreamType ( )

    Get a label describing the underlying implementation of the stream

  • public getUri ( )

    Get the URI/filename associated with this stream

  • public getCustomData ( string $key )

    Always retrieve custom data from the remote stream Get custom data from the stream

  • public setCustomData ( string $key, mixed $value )

    Always set custom data on the remote stream Set custom data on the stream

Methods detail

# public
__construct( Guzzle\Http\EntityBodyInterface $body )

We will treat the buffer object as the body of the entity body

Parameters

$body
Guzzle\Http\EntityBodyInterface
$body Entity body to decorate

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::__construct
# public string
__toString( )

Will give the contents of the buffer followed by the exhausted remote stream.

Warning: Loads the entire stream into memory

Returns

string

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::__toString
# public integer|boolean
getSize( )

Get the size of the stream if able

Returns

integer|boolean

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getSize
# public boolean
seek( integer $offset, integer $whence = SEEK_SET )

Seek to a position in the stream

Parameters

$offset
integer
$offset Stream offset
$whence
integer
$whence Where the offset is applied

Returns

boolean
Returns TRUE on success or FALSE on failure

Throws

Guzzle\Common\Exception\RuntimeException
When seeking with SEEK_END or when seeking past the total size of the buffer stream

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::seek
# public boolean
rewind( )

Rewind to the beginning of the stream

Returns

boolean
Returns true on success or false on failure

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::rewind
# public Guzzle\Http\CachingEntityBody
setRewindFunction( mixed $callable )

Does not support custom rewind functions

Parameters

$callable
mixed
$callable Callable to invoke to rewind a non-seekable stream. The callback must accept an EntityBodyInterface object, perform the rewind if possible, and return a boolean representing whether or not the rewind was successful.

Returns

Guzzle\Http\CachingEntityBody

Throws

Guzzle\Common\Exception\RuntimeException

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::setRewindFunction
# public string|boolean
read( integer $length )

Read data from the stream

Parameters

$length
integer
$length Up to length number of bytes read.

Returns

string|boolean
Returns the data read from the stream or FALSE on failure or EOF

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::read
# public integer|boolean
write( string $string )

Write data to the stream

Parameters

$string
string
$string The string that is to be written.

Returns

integer|boolean
Returns the number of bytes written to the stream on success or FALSE on failure.

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::write
# public string|boolean
readLine( integer $maxLength = null )

Read a line from the stream up to the maximum allowed buffer length

Parameters

$maxLength
integer
$maxLength Maximum buffer length

Returns

string|boolean

Link

http://php.net/manual/en/function.fgets.php

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::readLine
# public boolean
isConsumed( )

Check if the stream has been consumed

Returns

boolean

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::isConsumed
# public
close( )

Close both the remote stream and buffer stream

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::close
# public Guzzle\Http\CachingEntityBody
setStream( resource $stream, integer $size = 0 )

Set the stream that is wrapped by the object

Parameters

$stream
resource
$stream Stream resource to wrap
$size
integer
$size Size of the stream in bytes. Only pass if the size cannot be obtained from the stream.

Returns

Guzzle\Http\CachingEntityBody

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::setStream
# public string|null
getContentType( )

Guess the Content-Type of a local stream

Returns

string|null

See

http://www.php.net/manual/en/function.finfo-open.php

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getContentType
# public boolean|string
getContentEncoding( )

Get the Content-Encoding of the EntityBody

Returns

boolean|string

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getContentEncoding
# public array|mixed|null
getMetaData( string $key = null )

Get stream metadata

Parameters

$key
string
$key Specific metadata to retrieve

Returns

array|mixed|null

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getMetaData
# public resource
getStream( )

Get the stream resource

Returns

resource

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getStream
# public string
getWrapper( )

Get the stream wrapper type

Returns

string

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getWrapper
# public array
getWrapperData( )

Wrapper specific data attached to this stream.

Returns

array

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getWrapperData
# public string
getStreamType( )

Get a label describing the underlying implementation of the stream

Returns

string

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getStreamType
# public string
getUri( )

Get the URI/filename associated with this stream

Returns

string

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getUri
# public null|mixed
getCustomData( string $key )

Always retrieve custom data from the remote stream Get custom data from the stream

Parameters

$key
string
$key Key to retrieve

Returns

null|mixed

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::getCustomData
# public Guzzle\Http\CachingEntityBody
setCustomData( string $key, mixed $value )

Always set custom data on the remote stream Set custom data on the stream

Parameters

$key
string
$key Key to set
$value
mixed
$value Value to set

Returns

Guzzle\Http\CachingEntityBody

Overrides

Guzzle\Http\AbstractEntityBodyDecorator::setCustomData

Methods inherited from Guzzle\Http\AbstractEntityBodyDecorator

__call(), compress(), detachStream(), feof(), ftell(), getContentLength(), getContentMd5(), isLocal(), isReadable(), isRepeatable(), isSeekable(), isWritable(), setSize(), uncompress()

Magic methods summary

Properties summary

protected Guzzle\Http\EntityBody $remoteStream
#

Remote stream used to actually pull data onto the buffer

protected integer $skipReadBytes
#

The number of bytes to skip reading due to a write on the temporary buffer

Properties inherited from Guzzle\Http\AbstractEntityBodyDecorator

$body

AWS SDK for PHP API documentation generated by ApiGen 2.8.0