{"id":760,"date":"2022-05-01T16:39:35","date_gmt":"2022-05-01T16:39:35","guid":{"rendered":"http:\/\/5centscdn.net\/help-new\/?p=760"},"modified":"2026-03-12T17:57:12","modified_gmt":"2026-03-12T17:57:12","slug":"how-to-upload-to-cloud-storage-using-php","status":"publish","type":"post","link":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/","title":{"rendered":"How to upload to Cloud Storage using php?"},"content":{"rendered":"<p>You can use the open source php library <a href=\"https:\/\/github.com\/php-opencloud\/openstack\" target=\"_blank\" rel=\"noopener\"><strong>PHP OpenStack SDK<\/strong><\/a> to upload files to your push zones. The following shows how you can use it with 5centsCDN.<\/p>\n<ol>\n<li>Add <a href=\"https:\/\/github.com\/php-opencloud\/openstack\" target=\"_blank\" rel=\"noopener\">PHP OpenStack SDK<\/a> in your project using <a href=\"https:\/\/getcomposer.org\/\" target=\"_blank\" rel=\"noopener\">Composer<\/a>\n<ul>\n<li>composer require php-opencloud\/openstack<\/li>\n<\/ul>\n<\/li>\n<li>Add <a href=\"https:\/\/github.com\/guzzle\/guzzle\" target=\"_blank\" rel=\"noopener\">Guzzle, PHP HTTP Client<\/a> in your project\n<ul>\n<li>composer require guzzlehttp\/guzzle<\/li>\n<\/ul>\n<\/li>\n<li>Download the OpenStack RC v3 file from the <strong>OpenStack<\/strong> tab of the corresponding push zone.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3078 size-full\" src=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2021\/08\/verson.jpg\" alt=\"OpenRC\" width=\"928\" height=\"401\" \/><\/li>\n<li>Login to the OpenStack Horizon File Manager and from left menu, Identity > Users, copy the <strong>User ID<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-4091 size-large\" src=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2022\/05\/Screenshot-from-2022-05-01-21-53-09-1024x259.jpg\" alt=\"OpenStack USerID\" width=\"1024\" height=\"259\" \/><br \/>\n<\/strong><\/li>\n<li>From the OpenStack RC File copy the variables:\n<ul>\n<li>OS_PROJECT_ID, OS_USERNAME, OS_PASSWORD<\/li>\n<\/ul>\n<\/li>\n<li>Create the php file and copy paste the following OpenStack initialization code\n<pre><?php\n\nrequire \"vendor\/autoload.php\";\nuse GuzzleHttpPsr7Stream;\n\n$openstack = new OpenStackOpenStack([\n  'authUrl' => 'http:\/\/controller.5centscdn.com\/v3\/',\n  'region' => 'RegionOne',\n  'user' => [\n    'id' => 'xxxxxxxxx', \/\/ Replace with User ID copied in Step 4\n    'password' => 'xxxxxxx', \/\/ Replace with OS_PASSWORD copied from RC File\n  ],\n  'scope' => [\n    'project' => [\n      'id' => 'xxxxxxx', \/\/Replace with OS_PROJECT_ID\n    ]\n  ]\n]);\n\n$container = $openstack->objectStoreV1()->getContainer('xxxxxxx'); \/\/Replace with OS_USERNAME<\/pre>\n<\/li>\n<li>After you can follow the instructions in the <a href=\"https:\/\/php-opencloudopenstack.readthedocs.io\/en\/latest\/services\/object-store\/v1\/index.html\" target=\"_blank\" rel=\"noopener\">PHP OpenStack SDK Docs<\/a> to upload the files<\/li>\n<\/ol>\n<p><strong>Sample Usage<\/strong><\/p>\n<pre>\/* list container properties *\/\n$container->retrieve();\nprint_r($container);\n\n\/* list objects *\/\nforeach ($container->listObjects([], function ($o) { return $o->retrieve(); }) as $object) {\nprint_r($object);\n}\n\n\/* List Object Detail *\/\n$object = $container->getObject('01.mp4');\n$object->retrieve();\necho \"{$object->name}t{$object->contentType}t{$object->contentLength}\".PHP_EOL;\n\n\/* Upload files <5GB *\/\n$file = '\/path\/to\/filename.ext';\/\/Absolute path to the file\n$object = $container->createObject([\n'name' => 'raw\/'.pathinfo($file, PATHINFO_BASENAME),\n'stream' => new Stream(fopen($file, 'r')),\n]);\n$object->retrieve();\nprint_r($object);<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[45],"tags":[],"class_list":["post-760","post","type-post","status-publish","format-standard","hentry","category-cloud-storage"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC\" \/>\n\t<meta name=\"robots\" content=\"noarchive, noodp, notranslate, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"pradhyuman\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"5centsCDN Help Center - 5centsCDN | Guides, Tutorials &amp; Support\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to upload to Cloud Storage using php? - 5centsCDN Help Center\" \/>\n\t\t<meta property=\"og:description\" content=\"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<meta property=\"og:image:width\" content=\"160\" \/>\n\t\t<meta property=\"og:image:height\" content=\"58\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-05-01T16:39:35+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-03-12T17:57:12+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/5centscdn\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@5centscdn\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to upload to Cloud Storage using php? - 5centsCDN Help Center\" \/>\n\t\t<meta name=\"twitter:description\" content=\"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@5centscdn\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.5centscdn.net\\\/help\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"name\":\"Cloud Storage\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"position\":2,\"name\":\"Cloud Storage\",\"item\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#listItem\",\"name\":\"How to upload to Cloud Storage using php?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#listItem\",\"position\":3,\"name\":\"How to upload to Cloud Storage using php?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"name\":\"Cloud Storage\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#organization\",\"name\":\"5centsCDN Help Center\",\"description\":\"5centsCDN | Guides, Tutorials & Support\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/\",\"email\":\"hello@5centscdn.com\",\"telephone\":\"+13025203418\",\"foundingDate\":\"2021-06-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":1,\"maxValue\":50},\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/Logo.png?wsr\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#organizationLogo\",\"width\":160,\"height\":58,\"caption\":\"5centsCDN Logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/5centscdn\",\"https:\\\/\\\/x.com\\\/5centscdn\",\"https:\\\/\\\/instagram.com\\\/5centscdn\",\"https:\\\/\\\/tiktok.com\\\/@5centscdn\",\"https:\\\/\\\/pinterest.com\\\/5centscdn\",\"https:\\\/\\\/youtube.com\\\/5centscdn\",\"https:\\\/\\\/linkedin.com\\\/in\\\/5centscdn\",\"https:\\\/\\\/bsky.app\\\/profile\\\/5centscdn\",\"https:\\\/\\\/threads.com\\\/@5centscdn\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/\",\"name\":\"pradhyuman\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b8609bbef17e7ef3a7663a00cfa6ddf14121cbea329a29f34e412902d1d0741?s=96&d=mm&r=g\"}},{\"@type\":\"SoftwareApplication\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#softwareApp\",\"name\":\"How to upload to Cloud Storage using php?\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#webpage\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/\",\"name\":\"How to upload to Cloud Storage using php? - 5centsCDN Help Center\",\"description\":\"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\\\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\\\/guzzle Download the OpenStack RC\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-upload-to-cloud-storage-using-php\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\"},\"datePublished\":\"2022-05-01T16:39:35+00:00\",\"dateModified\":\"2026-03-12T17:57:12+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/\",\"name\":\"5centsCDN Help Center\",\"alternateName\":\"5centsCDN\",\"description\":\"5centsCDN | Guides, Tutorials & Support\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to upload to Cloud Storage using php? - 5centsCDN Help Center<\/title>\n\n","aioseo_head_json":{"title":"How to upload to Cloud Storage using php? - 5centsCDN Help Center","description":"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC","canonical_url":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/","robots":"noarchive, noodp, notranslate, max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help#listItem","position":1,"name":"Home","item":"https:\/\/www.5centscdn.net\/help","nextItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","name":"Cloud Storage"}},{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","position":2,"name":"Cloud Storage","item":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#listItem","name":"How to upload to Cloud Storage using php?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#listItem","position":3,"name":"How to upload to Cloud Storage using php?","previousItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","name":"Cloud Storage"}}]},{"@type":"Organization","@id":"https:\/\/www.5centscdn.net\/help\/#organization","name":"5centsCDN Help Center","description":"5centsCDN | Guides, Tutorials & Support","url":"https:\/\/www.5centscdn.net\/help\/","email":"hello@5centscdn.com","telephone":"+13025203418","foundingDate":"2021-06-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":1,"maxValue":50},"logo":{"@type":"ImageObject","url":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#organizationLogo","width":160,"height":58,"caption":"5centsCDN Logo"},"image":{"@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#organizationLogo"},"sameAs":["https:\/\/facebook.com\/5centscdn","https:\/\/x.com\/5centscdn","https:\/\/instagram.com\/5centscdn","https:\/\/tiktok.com\/@5centscdn","https:\/\/pinterest.com\/5centscdn","https:\/\/youtube.com\/5centscdn","https:\/\/linkedin.com\/in\/5centscdn","https:\/\/bsky.app\/profile\/5centscdn","https:\/\/threads.com\/@5centscdn"]},{"@type":"Person","@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author","url":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/","name":"pradhyuman","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/6b8609bbef17e7ef3a7663a00cfa6ddf14121cbea329a29f34e412902d1d0741?s=96&d=mm&r=g"}},{"@type":"SoftwareApplication","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#softwareApp","name":"How to upload to Cloud Storage using php?"},{"@type":"WebPage","@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#webpage","url":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/","name":"How to upload to Cloud Storage using php? - 5centsCDN Help Center","description":"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.5centscdn.net\/help\/#website"},"breadcrumb":{"@id":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/#breadcrumblist"},"author":{"@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author"},"creator":{"@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author"},"datePublished":"2022-05-01T16:39:35+00:00","dateModified":"2026-03-12T17:57:12+00:00"},{"@type":"WebSite","@id":"https:\/\/www.5centscdn.net\/help\/#website","url":"https:\/\/www.5centscdn.net\/help\/","name":"5centsCDN Help Center","alternateName":"5centsCDN","description":"5centsCDN | Guides, Tutorials & Support","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.5centscdn.net\/help\/#organization"}}]},"og:locale":"en_US","og:site_name":"5centsCDN Help Center - 5centsCDN | Guides, Tutorials &amp; Support","og:type":"article","og:title":"How to upload to Cloud Storage using php? - 5centsCDN Help Center","og:description":"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC","og:url":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/","og:image":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","og:image:secure_url":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","og:image:width":160,"og:image:height":58,"article:published_time":"2022-05-01T16:39:35+00:00","article:modified_time":"2026-03-12T17:57:12+00:00","article:publisher":"https:\/\/facebook.com\/5centscdn","twitter:card":"summary_large_image","twitter:site":"@5centscdn","twitter:title":"How to upload to Cloud Storage using php? - 5centsCDN Help Center","twitter:description":"You can use the open source php library PHP OpenStack SDK to upload files to your push zones. The following shows how you can use it with 5centsCDN. Add PHP OpenStack SDK in your project using Composer composer require php-opencloud\/openstack Add Guzzle, PHP HTTP Client in your project composer require guzzlehttp\/guzzle Download the OpenStack RC","twitter:creator":"@5centscdn","twitter:image":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr"},"aioseo_meta_data":{"post_id":"760","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-03-12 21:25:28","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2026-03-07 21:44:29","updated":"2026-03-12 21:25:28"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.5centscdn.net\/help\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/\" title=\"Cloud Storage\">Cloud Storage<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to upload to Cloud Storage using php?\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.5centscdn.net\/help"},{"label":"Cloud Storage","link":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/"},{"label":"How to upload to Cloud Storage using php?","link":"https:\/\/www.5centscdn.net\/help\/how-to-upload-to-cloud-storage-using-php\/"}],"_links":{"self":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/760","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/comments?post=760"}],"version-history":[{"count":1,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/760\/revisions"}],"predecessor-version":[{"id":1341,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/760\/revisions\/1341"}],"wp:attachment":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/media?parent=760"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/categories?post=760"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/tags?post=760"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}