欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

ecshop Strict standards: Only variables should be passed by

程序员文章站 2024-01-27 20:29:40
...

全部错误提示:Strict standards: Only variables should be passed by reference in **\admin\flashplay.php on line 181 在添加Flash图片时报错。 解决方法: 将 set_flash_data($_CFG['flash_theme'], $error_msg = ''); 改为 $error_msg = ''; set_flash

全部错误提示:Strict standards: Only variables should be passed by reference in **\admin\flashplay.php on line 181

在添加Flash图片时报错。

解决方法:

set_flash_data($_CFG['flash_theme'], $error_msg = '');

改为

$error_msg = '';
set_flash_data($_CFG['flash_theme'], $error_msg);