Accessing Windows Azure Blob Storage from PHP

Edit on GitHub

Pfew! A week of Microsoft TechDays here in Belgium with lots of talks on new Microsoft stuff, Azure included. You may know I already experimented with Windows Azure and ASP.NET MVC. Earlier this week, I thought of doing the same with Windows Azure and PHP...

What the ...?

imageAt Microsoft PDC 2008, the Azure Services Platform was announced in the opening keynote. Azure is the name for Microsoft’s Software + Services platform, an operating system in the cloud providing services for hosting, management, scalable storage with support for simple blobs, tables, and queues, as well as a management infrastructure for provisioning and geo-distribution of cloud-based services, and a development platform for the Azure Services layer.

You can currently download the Windows Azure SDK from www.azure.com and play with it on your local computer. Make sure to sign-up at the Azure site: you might get lucky and receive a key to test the real thing.

And what does PHP have to do with this?

As a reader of my blog, this should not be a question. I'm on the thin line between the Microsoft development environment (.NET) and PHP development environment, and I really like bridging the two together (think PHPExcel, PHPLinq). And cheap, distributed hosting of data (be it file or databases) is always interesting to use, especially in web applications where you may store anything your users upload. I have created a Zend Framework Proposal for this, let's hope this blog post ends as a contribution to the Zend Framework.

Show me the good stuff!

Will do! Currently, I have only implemented Azure blob storage in PHP, so that's what the following code snippets will be using. Enough blahblah now, here's how you connect with Azure:

[code:c#]

$storage = new Zend_Azure_Storage_Blob();

[/code]

This actually sets up a connection with the local Azure storage service from the Windows Azure SDK. You can, however, also pass in an account name and shared key from the real, cloud hosted Azure, too. Next: I want to create a storage container. A storage container is a logical group in which I can store any data. Let's name the container "azuretest":

[code:c#]

$storage->createContainer('azuretest');

[/code]

Easy? Yup! Azure now has created some space on their distributed storage for my files to be dumped in. Speaking of which: let's upload a file!

[code:c#]

$storage->putBlob('azuretest', 'images/WindowsAzure.gif', './WindowsAzure.gif');

[/code]

There we go. I've uploaded my local WindowsAzure.gif file to the azuretest container and named the file "images/WindowsAzure.gif'". Don't be confused: it is NOT stored in the images/ folder (there's no such thing on Azure), this is really the full filename. But don't worry, you can mimic a regular filesystem with folders, for example by retrieving all files that are prefixed with "images/":

[code:c#]

$storage->listBlobs('azuretest', '/', 'images/');

[/code]

Piece of cake!

I wanna play!

Sure, who doesn't? Here's a preview of the classes I've been creating: Zend_Azure_CTP.zip (11.51 kb)

Now let's hope my Zend Framework Proposal gets accepted so this can be a part of the Zend Framework. In the meantime, I'll continue with this and also implement Azure table storage: cheap, distributed database features in the cloud.

kick it on DotNetKicks.com

This is an imported post. It was imported from my old blog using an automated tool and may contain formatting errors and/or broken images.

Leave a Comment

avatar

3 responses

  1. Avatar for B Waters
    B Waters April 22nd, 2009

    As a non MS developer I am fnding it a bit hard to get a handle on the lines between azure and live services.... would you library for example let me also put and get a 'file'/blob from the live skydrive programatically?

  2. Avatar for Maarten Balliauw
    Maarten Balliauw April 22nd, 2009

    No, that's something different unfortunately. Live skydrive is more for personal use too, where Azure storage is reaklly to be used for application storage.

  3. Avatar for Abdul Jaleel Kavungal Kunnumpu
    Abdul Jaleel Kavungal Kunnumpu April 17th, 2011

    Here is a full detailed presentation on how to setup wordpress on Windows Azure http://cloudgeist.blogspot....