我使用 ZF1,如果出现以下情况,我需要添加标题:
title="<?php echo isset($this->region['klu']) ? $this->region['klu'] : 'region name for klu'?>"
其中 klu - 是我表中 r_alias 行中的数据
所以,在我的控制器中,我做了这样的事情:
$region = Map_Model_Map_Factory::getFetchAll();
$this->view->assign('region', $region);
什么是 getFetchAll():
static function getFetchAll()
{
$table = new Map_Model_Map_Table();
$select = $table->select()
->order('r_alias ASC');
return $table->fetchAll($select);
}
但是这里出了点问题,我需要有我的回声区域,而不是我有空页面。