我在项目中使用Zend_Translate和ini适配器。
我想知道如何在我的ini文件中使用空格字符。
示例:
ini file:
Show All = my translation // there is space between Show & All
view scipt:
echo $this->translate('Show All') // it doesnt translate
答案 0 :(得分:4)
你不能(至少我不知道一种方式),但是你有点不对,把第一个参数(“显示全部”)想象成一个常数或变量,女巫有一些内容会在certan场景中改变了。例如,我会使用$this->translate("SHOW_ALL");
。