| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
All code in the snippets directory demonstrates how to invoke Cloud Storage Batch Operations from PHP.
Enable APIs - Enable the Storage Batch Operations Service API and create a new project or select an existing project.
Download The Credentials - Click "Go to credentials" after enabling the APIs. Click "New Credentials" and select "Service Account Key". Create a new service account, use the JSON key type, and select "Create". Once downloaded, set the environment variable GOOGLE_APPLICATION_CREDENTIALS to the path of the JSON key that was downloaded.
Clone the repo and cd into this directory
$ git clone https://github.com/GoogleCloudPlatform/php-docs-samples
$ cd php-docs-samples/storagebatchoperationsInstall dependencies via Composer. Run php composer.phar install (if composer is installed locally) or composer install (if composer is installed globally).
To run the Storage Batch Operations Samples, run any of the files in src/ on the CLI:
$ php src/create_job.php Usage: create_job.php $jobId $bucketName $objectPrefix @param string $projectId The Project ID @param string $jobId The new Job ID @param string $bucketName The Storage bucket name @param string $objectPrefix The Object prefix
This sample uses the Cloud Storage Batch Operations Client Library for PHP. You can read the documentation for more details on API usage and use GitHub to browse the source and report issues.
| Back | FazBrowse Home | New Git URL |