PHP code example of techdyn / google-storage-meta-bucket
1. Go to this page and download the library: Download techdyn/google-storage-meta-bucket library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
techdyn / google-storage-meta-bucket example snippets
use TechDyn\GoogleStorageMetaBucket\Storage\ProxyStorageClient;
$storage = new ProxyStorageClient(); // ProxyStorageClient extends Google\Cloud\Storage\StorageClient;
$bucket = $storage->bucket('my_bucket'); // MetaBucket extends Google\Cloud\Storage\Bucket
// https://cloud.google.com/storage/docs/metadata
$bucket->setOption('cacheControl', 'no-cache, max-age=60'); // $name uses metadata field written as camelCase
// Upload a file to the bucket.
$bucket->upload(
fopen('/data/file.txt', 'r')
);