private function getYears()
{
return array('Test1', 'Test2', 'Test3', 'Test4');
}
索引:
$years = $this->getYears();
,並在視圖
<select>
<?php foreach ($years as $row):?>
<option><?=$row?></option>
<?php endforeach;?>
</select>
的選擇框沒有按沒有滿足?
我該如何解決這個問題?
[編輯]
到目前爲止,我注意到,$年代是空的,getYears沒有被稱爲..不知道爲什麼又..
foreach($ year as $ row) – fsonmezay 2011-06-07 12:13:00
爲什麼'$ pages'而不是'years'? – 2011-06-07 12:13:07
嘗試var_dump($年);'看看裏面'$ years' – Emmerman 2011-06-07 12:13:17