PHP Zend框架:Zend查看动作助手

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Zend框架:Zend查看动作助手相关的知识,希望对你有一定的参考价值。

// IndexController.php
public function widgetenabledoutputAction() {
  $html = "<ul>";
  for ($i = 1; $i <= 5; $i++) {
    echo "<li>Item $i</li>";
  }
  $html .= "</ul>";
  $this->view->html = $html;     
}

// index action view script (index.phtml), notice we are not calling widgetenabledoutputAction but can get output from it
echo $this->action(
  $action = "widgetenabledoutput",
  $controller = "index",
  $module = null,
  array(
    "itemsPerPage" => 2 // can pass params as array
  )
);

以上是关于PHP Zend框架:Zend查看动作助手的主要内容,如果未能解决你的问题,请参考以下文章

设置 zend 框架动作控制器

php - Zend Framework中的冲突视图助手名称

zend 框架显示/处理表单使用相同的动作/视图?

PHP,Zend 框架错误被 Apache 消耗

使用 Zend_View_Helper_* 读取助手并自动加载

Zend:PHP框架结束的开始?