Maison  >  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:071128parcourir

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

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn