安装Ecshop首页出现报错:Only variables should be passed by referen

出现下面这就话:

Strict Standards: Only variables should be passed by reference in E:\Tools\ECShop_V2.7.3_UTF8_release1106\upload\includes\cls_template.php
on line 418
第418行:$tag_sel = array_shift(explode(' ', $tag));
解决办法 1 
5.3以上版本的问题,应该也和配置有关 只要418行把这一句拆成两句就没有问题了  $tag_sel = array_shift(explode(' ', $tag)); 改成: $tag_arr = explode(' ', $tag);  $tag_sel = array_shift($tag_arr);
(实验过,绝对可行) 因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值 
解决办法 2 : 或则如果这样配置的话: error_reporting = E_ALL | E_STRICT


php.ini中有如下设置:
error_reporting = E_ALL | E_STRICT
这是说,显示那些不符合编码规范的警告(coding standards warnings)。
Joomla其实是建议取消error的输出,如果出于调试需要,应改为
error_reporting = E_ALL & ~E_NOTICE
问题得到解决。
下面是错误输出配置的原文:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; This directive informs PHP of which errors, warnings and notices you would like
; it to take action for. The recommended way of setting values for this
; directive is through the use of the error level constants and bitwise
; operators. The error level constants are below here for convenience as well as
; some common settings and their meanings.
; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
; those related to E_NOTICE and E_STRICT, which together cover best practices and
; recommended coding standards in PHP. For performance reasons, this is the
; recommend error reporting setting. Your production server shouldn't be wasting
; resources complaining about best practices and coding standards. That's what
; development servers and development settings are for.
; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This
; means it pretty much reports everything which is exactly what you want during
; development and early testing.
;
; Error Level Constants:
; E_ALL            - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
; E_ERROR          - fatal run-time errors
; E_RECOVERABLE_ERROR  - almost fatal run-time errors
; E_WARNING        - run-time warnings (non-fatal errors)
; E_PARSE          - compile-time parse errors
; E_NOTICE          - run-time notices (these are warnings which often result
;                   from a bug in your code, but it's possible that it was
;                   intentional (e.g., using an uninitialized variable and
;                   relying on the fact it's automatically initialized to an
;                   empty string)
; E_STRICT          - run-time notices, enable to have PHP suggest changes
;                   to your code which will ensure the best interoperability
;                   and forward compatibility of your code
; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
;                   initial startup
; E_COMPILE_ERROR  - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR      - user-generated error message
; E_USER_WARNING    - user-generated warning message
; E_USER_NOTICE    - user-generated notice message
; E_DEPRECATED      - warn about code that will not work in future versions
;                   of PHP
; E_USER_DEPRECATED - user-generated deprecation warnings
;
; Common Values:
;  E_ALL & ~E_NOTICE  (Show all errors, except for notices and coding standards warnings.)
;  E_ALL & ~E_NOTICE | E_STRICT  (Show all errors, except for notices)
;  E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
;  E_ALL | E_STRICT  (Show all errors, warnings and notices including coding standards.)
; Default Value: E_ALL & ~E_NOTICE    ------默认
; Development Value: E_ALL | E_STRICT  ------开发用
; Production Value: E_ALL & ~E_DEPRECATED -- 正式发布用
; http://php.net/error-reporting
;error_reporting = E_ALL | E_STRIC

转载于:https://www.cnblogs.com/wallis0922/archive/2012/12/08/2808199.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/409339.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

html设计网页技巧,网页设计技巧:网页表格设计技巧总结

一个好的表格应该以易于理解,简单明了的方式传递大量的信息。真正的重点应该 放在信息上, 对表格的过度设计会抵消这种作用。从另一方面来说,巧妙的设计不仅可以使一个表格更具吸引力, 而且可以增加可读性。表格信息通常是很乏味的…

multi task训练torch_手把手教你使用PyTorch(2)-requires_gradamp;computation graph

import torch1. Requires_grad但是,模型毕竟不是人,它的智力水平还不足够去自主辨识那些量的梯度需要计算,既然如此,就需要手动对其进行标记。在PyTorch中,通用的数据结构tensor包含一个attributerequires_grad&#x…

【原】unity shader(3)反射贴图

改编自《cg教程--可编程实时图形学权威指南》上的demo。 反射向量计算公式 RI-2N(N*I) 备注N*I是点乘 I入射光线,N法向量 函数实现: float3 reflect(float3 I,float3 N) { return I-2.0*N*dot(N,I); } Shader "CG shader Reflect"{Propertie…

分时技术用户可以独占计算机资源,计算机基础第二章选择题(带答案修改版 )校过...

一,选择题(选择最确切的一个答案,将其代码填入括号中)1、操作系统是一种( ).A, 应用软件 B, 系统软件 C, 通用软件 D, 工具软件2、计算机系统的组成包括( ).A,程序和数据 B,处理器和内存 C,计算机硬件和计算机软件 D,处理器,存储器和外围设备3、下面关于计算机软件的描述正确的…

div显示在上层_DIV重叠 如何优先显示(div浮在重叠的div上面)

如果有2个div有重叠,默认是根据html解析顺序,最后加载的优先级最高(浮在最上面)。问题:如果想把前面加载的div显示在最上面?关键字:z-index举例:--原来的页面:first div是被second div盖住了&am…

计算机专业英语的时态特点,英语时态表的学习与整理

学习英语必须要了解英语的各种时态,不了解时态会说话时闹出笑话,也会引出歧义,做题的时候也会出错。所以英语的时态一定要分清也要记牢,无论什么时候运用英语的时候都不要忘记。现在就和沪江小编一起了解了解吧!英语时态表 时态名…

el replace 表达式_EL表达式运算符、常用函数详解

运算符&#xff1a;1.算术运算符有五个&#xff1a;、-、*或$、/或div、%或mod2.关系运算符有六个&#xff1a;或eq、!或ne、或gt、<或le、>或ge3.逻辑运算符有三个&#xff1a;&&或and、||或or、!或not4.其它运算符有三个&#xff1a;Empty运算符、条件运算符、…

[短彩信]C#短彩信模块开发设计(2)——配置

准备从以下几个方面简单的谈谈短彩信模块的实现&#xff1a; [短彩信]C#短彩信模块开发设计&#xff08;1&#xff09;——架构&#xff08;http://www.cnblogs.com/CopyPaster/archive/2012/12/07/2806776.html&#xff09;[短彩信]C#短彩信模块开发设计&#xff08;2&#xf…

python管理工具ports_Python options.port方法代码示例

本文整理汇总了Python中tornado.options.port方法的典型用法代码示例。如果您正苦于以下问题&#xff1a;Python options.port方法的具体用法&#xff1f;Python options.port怎么用&#xff1f;Python options.port使用的例子&#xff1f;那么恭喜您, 这里精选的方法代码示例或…

html5 canvas文字颜色,我可以通过HTML5 Canvas中的字符文本颜色来做吗?

我告诉你这个解决方法.基本上你一次输出一个字符,并使用内置的measureText()函数来确定每个字母的宽度.然后我们将我们想要绘制的位置偏移相同的数量.您可以修改此代码段,以产生所需的效果.假设我们有这样的HTML&#xff1a;和Javascript一样&#xff1a;var canvas document.…

转移指令总结

转移指令&#xff1a;可以修改ip的指令。无条件转移 jmp(1) jmp short s 标号&#xff0c;短转移&#xff1a;用一个字节表示大小&#xff0c;范围为-128--127 (2) jmp near ptr s 标号&#xff0c;近转移&#xff1a;用两个字节表示大小&#xff0c;范围为-32768--32767(3) …

浅谈对程序员的认识_浅谈IT界程序员大佬普遍对性的追求

原标题&#xff1a;浅谈IT界程序员大佬普遍对性的追求业界程序员大佬跟普通程序员的差别&#xff0c;别的不说&#xff0c;对于完成一个需求来说&#xff0c;除了更少的 bug&#xff0c;还有什么优势&#xff1f;还有程序员对性的追求。下面谈谈最顶级的程序员对20个性的追求可…

乔治敦大学计算机专业排名,2020USNEWS数据科学与分析专业综合排名(上)

2020年USNEWS专业排名已经陆续放出了&#xff0c;今天慧德留学就带大家看一下2020年美国USNEWSS数据科学与分析专业的综合排名&#xff0c;供大家参考。独立项目综合排名 学校名称 专业名称 专业英文名 开设学位 所属科系1 哈佛大学 计算科学与工程 Computational Science and …

Javascript事件绑定this

在FF中的事件绑定是使用addEventListener&#xff0c;其中函数中的this就是被绑定事件的元素&#xff1b;而在IE下的attachEvent函数中的this是指window。 DRY&#xff1a;Don‘t Repeat Yourself&#xff1b; 对于自己声明的函数&#xff0c;如果参数是多个&#xff0c;并且可…

python xlutils教程_Python基于xlutils修改表格内容过程解析

一、xlutils是什么是一个提供了许多操作修改excel文件方法的库&#xff1b;属于python的第三方模块xlrd库用于读取excel文件中的数据&#xff0c;xlwt库用于将数据写入excel文件&#xff0c;修改用xlutils模块&#xff1b;xlutils库也仅仅是通过复制一个副本进行操作后保存一个…