我一直面临 Zend Form 的问题,出于某种原因,具有德语特殊字符的单词不会显示在 Dropbox 中。对于我使用此部分代码的表单:
$country_to = new Zend_Form_Element_Select('country_to');
$country_to->setLabel('Traveling To (Country)')
->addMultiOptions($this->country_list);
我从数据库中得到它是这样的:
protected $country_list = array();
protected function getCountryValues()
{
$mapper = new Application_Model_Mapper_Resource();
$resources = $mapper->fetchAllCountries();
$this->country_list[''] = '';
foreach($resources as $resource){
$this->country_list[$resource->getName()] = $resource->getName();
}
}
我得到的结果是这样的:
我转储了 country_list,它实际上包含所有数据,但它没有显示在表单中!