由于我在PHP 5.6中,我有这个警告(不是在PHP 5.2中):
PHP Strict Standards: Only variables should be passed by reference in blockcategories_top.php on line 157
以下是第157行:
line 155 if ($cookie->last_visited_category) {
line 156 $c = new Category(intval($cookie->last_visited_category));
line 157 $oldies = array_pop($c->getParentsCategories());
line 158 $oldies = $oldies['id_category'];
line 159 $smarty->assign('oldies', $oldies);
line 160 }
拜托,我该怎么办呢? :)
谢谢!