binary_set ( $values )

A shortcut/factory-type method for indicating a DynamoDB binary set type.

Access

public

Parameters

Parameter

Type

Required

Description

$values

array

Required

The values to be converted to a binary set.

Source

Method defined in services/dynamodb.class.php | Toggle source view (9 lines) | View on GitHub

public function binary_set($values)
{
    if (is_scalar($values))
    {
        $values = func_get_args();
    }

    return new DynamoDB_BinarySet($values);
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback