1
這是我的控制器: (文件名:AboutController.php)無法顯示視圖的變量值
class AboutController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$this->view->pageTitle="GameNomadTitle";
}
public function contactAction()
{
}
}
這就是我的觀點,即關聯吧。 (文件名:index.phtml)
enter code here<br /><br />
<div id="view-content">
<title><?= $this->pageTitle; ?></title>
Links: Homepage – NFO
</div>
標題似乎並不爲appear..why是什麼?!?
謝謝。它一直下一次我會更加小心 –