这是我的控制器: (文件名: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>
标题似乎没有出现..为什么???
答案 0 :(得分:2)
尝试删除=
和您要输出的变量之间的空格:
<?=$this->pageTitle; ?>
更好的是,不要使用短标签:
<?php echo $this->pageTitle; ?>