More On Cloud Computing For PHP Developers

In the Words of Another Developer

A while back, I wrote an article on the importance of cloud computing. A few people posted some good comments and feedback, but last night I got such a long and well thought out comment that I thought it deserved it’s own post. So, without further adieu, here are the thoughts of Daniel Kadosh.

Read the rest of this entry »

The Importance of Cloud Computing for PHP Developers

It's more than just another buzz word

You may (or may not) have noticed that there’s A LOT of talk about cloud computing these days. The problem with all this chatter is that it’s incredibly hard to follow. There seems to be a wealth of different definitions of just what cloud computing actually is, and not without good reason. The “cloud” is a pretty ambiguous term, and as such anything attached to it only makes the whole thing a little more ambiguous. Rather than go off on a rant about how all this confusion is leading to a lot of misconceptions about various cloud-based services, let me clarify what I’m going to talk about. This will not be a discussion of certain SaaS stuff living in the cloud (like gmail, twitter, etc.), but rather actual cloud-based computing services and why you need to be using them.

Read the rest of this entry »

PHP Thumb 3.0 Released

The long-awaited release is finally here!
PHP Thumb - An image manipulation library for PHP

Well, it’s been a long time coming, but I’ve finally managed to get the next release of my PHP Thumbnailer library completed! I’m also happy to announce that the project finally has its own website: http://phpthumb.gxdlabs.com. I’ve put a lot of work into bringing the class up to date, making it extensible, and most of all, making sure its well documented! I’ve also tried to make it easier to get help through either bug reports or forums dedicated to the project itself.

Rather than go into any detail, I want to encourage you to check out the project’s new site. Feel free, however, to share any thoughts you have in the comments for this post :)

Doctrine – PHP Object Relational Mapper

ORM is certainly a very popular concept these days, but I haven’t really come across any PHP implementations that I found worth-while. Sure, big frameworks like CakePHP may have ORM functionality, but I’m not a fan of huge frameworks. I’ve also dabbled in my own implementations, but never got too far, as I’m not a fan of re-inventing the wheel. At any rate, I stumbled across Doctrine by accident (good ol’ RSS readers), and am impressed, mostly because it’s something that can be integrated into existing projects / frameworks.
www.doctrine-project.org

Making RESTful Requests in PHP

How to GET, POST, PUT, & DELETE in PHP

APIs have become a very commonplace part of many popular web sites and services… especially REST APIs. I’ve already discussed how you can roll your own REST API for your PHP apps, but I’ve also received countless requests to go over how to actually make RESTful requests. That’s exactly what we’ll take a look at in this article. Before we dive in, however, I want to make sure you’ve got a basic understanding of how REST APIs work, so if you’re a bit shaky or unfamiliar with the concept, head on over to my previous article on REST and read up (you don’t need to go over the implementation stuff if you don’t want, just read the first part of the article). Seriously, do it… this article is written with the assumption you’re familiar with the concepts of REST.

Anyway, without any further delay, let’s take a look at what we’re going to cover…

Read the rest of this entry »