gog's info

<?php echo array_rand(array('web', 'dev', 'computers')); ?>

Archive for October, 2008

Removing require_once() calls from Zend Framework

without comments

If you are using Zend_Loader to load your classes in Zend Framework, there is no need for all the require_once() calls that are littered all over ZF files.

Some acctually report big improvements in responsiveness of their applications and increase in number of transactions per second their hardware can handle because require_once() is quite an expensive operation, especially if the required file is already included prior to the call. Read the rest of this entry »

Written by Goran Jurić

October 16th, 2008 at 12:39 am