Skip to content

Instantly share code, notes, and snippets.

@ycombinator
Created June 4, 2014 02:12
Show Gist options
  • Save ycombinator/77fd403413e605c2ebe9 to your computer and use it in GitHub Desktop.
Save ycombinator/77fd403413e605c2ebe9 to your computer and use it in GitHub Desktop.
<?php
require_once "cloudfiles.php";
// Authenticate.
$cfAuth = new CF_Authentication("username", "api key");
$cfAuth->authenticate();
// Get connection.
$cfConn = new CF_Connection($cfAuth);
// Get container.
$container = $cfConn->get_container("foo");
// Get file from container.
$file = $container->get_object("bar.txt");
// Update file in container.
$file->load_from_filename("./bar.txt");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment