<?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';
}
}
?>
<html>
<head>
<title><?php echo $this->title?></title>
</head>
<body>
<?php echo $this->body ?>
</body>
</html>
Response time: 0.04 secs Transaction rate: 125.79 trans/sec
- php_value include_path .:/usr/local/lib/php:/var/www/zf/source + php_value include_path /var/www/zf/source:.:/usr/local/lib/php
Response time: 0.04 secs Transaction rate: 130.08 trans/sec