Home > php教程 > php手册 > body text

ecshop Strict standards: Only variables should be passed by

WBOY
Release: 2016-06-06 20:02:07
Original
1123 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!