我有一個語言文件,其中有一長串的字符串用於查看我的文件。 我的問題是如何將變量或配置項傳遞給語言文件?Codeigniter:語言文件中的變量/配置項
<?php $lang['error_activation_key_expired'] = 'The activation key you have attempted using has expired. Please request a new Activation Key <a href="'.$this->config->item('base_url').'member/request_activation" title="Request a New Activation Key">here</a>.';
我能安定爲
<?php $lang['error_activation_key_expired'] = 'The activation key you have attempted using has expired. Please request a new Activation Key <a href="'.$base_url.'member/request_activation" title="Request a New Activation Key">here</a>.';
和BASE_URL某種方式傳遞給它。我只是不知道如何。
謝謝!
我的BASE_URL多次引用遍及語言文件。重複會有問題嗎? – 2009-11-11 20:16:08
不完全確定你的意思。重複在哪裏? – Thody 2009-11-11 20:24:10
對不起,nm。 您的解決方案非常完美。謝謝! – 2009-11-11 20:29:19