我是 Zend 框架的新手。我在 netbeans 中制作了示例项目。它可以正常显示 index.phtml 。但是,我需要调用我的控制器。我尝试过的如下。
IndexController.php
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
}
public function indexAction()
{
firstExample::indexAction();
}
}
而且我已经删除了 index.phtml 的所有内容(只是一个空白文件),因为我不想渲染这个视图。我的自定义控制器是:
firstExampleController.php
<?php
class firstExample extends Zend_Controller_Action{
public function indexAction(){
self::sum();
}
public function sum(){
$this->view->x=2;
$this->view->y=4;
$this->view->sum=x + y;
}
}
?>
firstExample.phtml
<?php
echo 'hi';
echo $this->view->sum();
?>
如何在 firstExample.php 中显示 sum 方法。
它只是在点击以下 URL 后显示空白页面。
http://localhost/zendWithNetbeans/public/
我想在点击上面的 URL 之后,首先执行到 public 文件夹中的 index.php。我没有更改 index.php 的内容