Zend Form で問題に直面しています。何らかの理由で、ドイツ語の特殊文字を含む単語がドロップボックスに表示されません。この部分的なコードを使用しているフォームの場合:
$country_to = new Zend_Form_Element_Select('country_to');
$country_to->setLabel('Traveling To (Country)')
->addMultiOptions($this->country_list);
そして、私はこのようにDBから取得しています:
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 をダンプしましたが、実際にはすべてのデータが含まれていますが、フォームには表示されません!