Rebuilding With Zend Framework

I’d mentioned a while back that I had built an intranet application with PHP. While I was able to spit out accessible and validating pages, I was not a very advanced programmer so the entire application was written using procedural code. I was contacted by my former manager to do some reworking of the site so that it can be extended, so I have decided to use Zend Framework as a base for a complete rebuild of the project using Object Oriented programming.

I’ve been reading a bit the last few months on Object Oriented PHP development and I think that using the framework will give me a head start as there are a lot of standard things to handle in most applications that don’t need to be re-invented. Quite a bit of the security and database connectivity issues are already handled by the framework and this also gives me a place to begin to really understand the structure and theory of OO programming by following an already established structure.

There are so many way to tackle just about any function that it is a bit overwhelming at first, but I’ve found that once I’ve dug in it is fairly easy to get into the swing of things.

Comments are closed.