Skip to content

Instantly share code, notes, and snippets.

@zircote
Created January 18, 2012 21:49
Show Gist options
  • Select an option

  • Save zircote/1635975 to your computer and use it in GitHub Desktop.

Select an option

Save zircote/1635975 to your computer and use it in GitHub Desktop.
example
<?php
require_once 'AWSSDKforPHP/sdk.class.php';
require_once 'AWSSDKforPHP/services/dynamodb.class.php';
$dynamodb = new AmazonDynamoDB(
array(
'certificate_authority' => true,
'default_cache_config' => '/tmp',
'key' => '',
'secret' => ''
)
);
$response = $dynamodb->list_tables();
print_r($response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment