Quote:
Originally Posted by Scothorse
Pardon me, I am tired and too lazy to find out what Zend does, any1 cares to explain 
|
The Zend Optimizer is one of the
most popular PHP plugins for performance-improvement, and has been available for free, since the early days of PHP 4.
It improves the performance of the web pages by scanning PHP's intermediate code and passing it through multiple Optimization Passes to replace inefficient code patterns with more efficient code blocks. The replaced code blocks perform exactly the same operations as the original code, only a bit more
faster than usual..
