Category Archives: PHP

PHP: Hypertext Preprocessor

Short URLs with Zend Framework

First up, what's a short URL? A short URL is just that; a url that is as short as it can possibly be, so that takes up as few characters as possible when it is used in a twitter message, … Continue reading

Posted in PHP, Zend Framework | Tagged , , , , , | Leave a comment

Caching files statically with Zend Framework

I've been using ZF (almost exclusively) since version 0.10 or so in 2006. It's come a long way since then, and the folks involved with it are very skilled and methodical. It's quite fun to see new versions roll out … Continue reading

Posted in PHP, Zend Framework | Leave a comment

Bootstrapping Zend Framework via ErrorDocument 404

Traditionally Zend Framework applications are bootstrapped using mod_rewrite as recommended in the manual and various tutorials. For non-Apache servers such nginx, similar methods are provided. But it's also possible to use Apache's ErrorDocument configuration to kick off a Zend Framework … Continue reading

Posted in PHP, Zend Framework | Leave a comment

Zend Framework: Coding by Convention - Part 2

A number of components sometimes accept strings or arrays as parameter. Developers coming from statically typed languages might cringe a bit, but this is really just about taking advantage of the flexibility of the language. With flexibility comes freedom and … Continue reading

Posted in PHP, Zend Framework | Leave a comment

Zend Framework: Coding by Convention

This is really something I've been wanting to point out because, for one, I very much like and agree with the approach, and second, it's something that any developer using the Zend Framework should digest and take into consideration when … Continue reading

Posted in Development, PHP, Zend Framework | 2 Comments