我正在尝试使用 Zend_Config_Ini 为 Zend_Form 配置表单,并希望为 .ini 文件中的选择元素设置选项。
这适用于具有单个字符串值的选项,即
user.exampleform.elements.subject.options.multiOptions.example = "Example Label"
但是,我不知道如何使用字符串作为值,即“示例选择”
我正在使用 Zend Framework 1.9.3PL1。
我正在尝试使用 Zend_Config_Ini 为 Zend_Form 配置表单,并希望为 .ini 文件中的选择元素设置选项。
这适用于具有单个字符串值的选项,即
user.exampleform.elements.subject.options.multiOptions.example = "Example Label"
但是,我不知道如何使用字符串作为值,即“示例选择”
我正在使用 Zend Framework 1.9.3PL1。
看代码Zend_Form_Element_Multi::addMultiOptions
user.exampleform.elements.subject.options.multiOptions.example.key = "Example Choice"
user.exampleform.elements.subject.options.multiOptions.example.value = "Example Label"