Home  >  Article  >  php教程  >  ecshop Strict standards: Only variables should be passed by

ecshop Strict standards: Only variables should be passed by

WBOY
WBOYOriginal
2016-06-06 20:02:071128browse

全部错误提示: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);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn