Skip to content
robertcarr edited this page Sep 13, 2010 · 3 revisions
Tarzan PHP toolkit

<?php
require ‘./tarzan/tarzan.class.php’;

$bucket=“robertcarr”;
$ec2 = new AmazonEC2();
$db = new AmazonSDB();

$obj = $ec2→describe_snapshots();
#print_r($obj);

foreach ($obj→{’body’}→{’snapshotSet’}→{’item’} as $test) {
print $test→{’snapshotId’};
print “\n”;
}

?>
~
~
~
~
~

Clone this wiki locally