Some services store a set of key-value pairs along with the item as metadata. Use the
fetchMetadata() method to retrieve an item's metadata.
Example 104. Fetching metadata
<?php
$data = $storage->fetchMetadata('/my/remote/path/picture.jpg');
foreach ($data as $key => $value) {
echo "Metadata $key: $value\n";
}




