offsetExists ( $offset )

Check whether or not a specific offset exists.

Access

public

Parameters

Parameter

Type

Required

Description

$offset

integer

Required

The location in the collection to verify the existence of.

Returns

Type

Description

boolean

A value of true indicates that the collection offset exists. A value of false indicates that it does not.

Source

Method defined in utilities/credential.class.php | Toggle source view (4 lines) | View on GitHub

public function offsetExists($offset)
{
    return $this->collection->offsetExists($offset);
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback