【发布时间】:2014-08-19 10:51:51
【问题描述】:
在我的 Magento 项目中 => System.log 生成以下错误
2014-06-28T12:34:58+00:00 ERR (3): Strict Notice: Only variables should be passed by reference in
D:\INETPUB\VHOSTS\DOMAINNAME\app\design\frontend\THEME\default\template\directory\currency-top.phtml on line 9
第 9 行的代码如下:
$last_item = end(($this->getCurrencies()));
【问题讨论】:
-
试试这个。
$var = $this->getCurrencies();$last_item = end($var);
标签: php magento currency magento-1.8