Zend engineer certification, I has it 6

Just a quick note to say I successfuly passed my Zend PHP 5 Certification this morning....

Extending Zend_Controller_Router_Route: the singleton problem. 5

Today I ran into an issue while extending Zend_Controller_Router_Route. I wanted to add a little path pre/post processing in the match() and assemble() methods, so I just extended the Route class to add my tiny bits of code into the methods. Except it did not work at all. After a few debuging, it...

Quick php5 pre-migration check

If you're wondering how much of a hassle it would be to migrate your app / codebase to php5, try the following command line (after having installed the php5-cli package of course): find . -name "*.php" -exec /usr/bin/php5 -l {} \; | grep -v 'No syntax errors' It'll show you all the files...

Top tags