私は 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);
}
しかし、ここで何か問題が発生しています。エコー領域が必要ですが、代わりに空のページがあります。