Controller
<?php
require_once 'Zend/Controller/Action.php';
class 
IndexController extends Zend_Controller_Action {
  public function 
indexAction() {
    
$this->view->title='Test';
    
$this->view->body='Hello, World';
  }
}
?>
View
<html>
<head>
<title><?php echo $this->title?></title>
</head>
<body>
<?php echo $this->body ?>
</body>
</html>
Performance
Response time:		        0.04 secs
Transaction rate:	      125.79 trans/sec
Prepend the ZF path
- php_value include_path .:/usr/local/lib/php:/var/www/zf/source
+ php_value include_path /var/www/zf/source:.:/usr/local/lib/php
Performance
Response time:		        0.04 secs
Transaction rate:	      130.08 trans/sec