2011-12-11 84 views
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是什麼?!?

回答

2

嘗試=和您試圖輸出變量之間取出的空間:

<?=$this->pageTitle; ?> 

更好的是,不要使用短標記:

<?php echo $this->pageTitle; ?> 
+0

謝謝。它一直下一次我會更加小心 –