zencart 显示Deprecated: Assigning the return value of new by reference is deprecated

很多朋友的php程序当php的版本升级到5.3以后,会出现"Deprecated: Assigning the return value of new by reference is deprecated in"显示出来。这是因为5.3以后,不能使用"=&"符号,可以直接用"="就可以了。

所以当出现这个问题后有两种解决方法:

1.把php的版本降级到5.3以下,但后退的不是明智的选择。

2.对程序中"=&"符号全部用"="代替。

时间: 2024-10-08 19:15:04

zencart 显示Deprecated: Assigning the return value of new by reference is deprecated的相关文章

显示Deprecated: Assigning the return value of new by reference is deprecated in解决办法

很多朋友的php程序当php的版本升级到5.3以后,会出现”Deprecated: Assigning the return value of new by reference is deprecated in“ 显示出来.这是因为5.3以后,不能使用”=&”符号,可以直接用”=”就可以了. 所以当出现这个问题后有两种解决方法: 1. 把php的版本降级到5.3以下,但后退的不是明智的选择. 2. 对程序中”=&”符号全部用”=” 代替.

ECShop后台站点地图关于 Deprecated: Assigning the return value of new by reference is deprecated的错误的解决办法

今天对后台系统进行一些简单的操作,当点击  系统设置---站点地图  时发现提示: Deprecated: Assigning the return value of new by reference is deprecated 的错误,如下图: 起先以为是代码的问题,可是一想到这个模板是官网的默认模板,对sitemap.php文件进行查找后未能发现问题.后来将错误内容从网上一查找,原来是由于从php5.3开始后,废除了php中的"=&"符号,所以删除&符号即可. 删除

出现 Assigning the return value of new by reference is deprecated in xxxx &&“Warning: Call-time pass-by-reference has been deprecated”怎么办?

自从php5.3,越来越多的人会遇到“Assigning the return value of new by reference is deprecated in xxxx”这样的提示,尤其是在国外产品中(例如wordpress.joolma),很多人的解决办法很简单:把php版本换回就版本就ok了.毫无疑问这是个好办法,对这种遇到问题不求甚解的态度可能会让人看到些什么.我认为要换回php的旧版本,其实是对php技术爱好者的一种羞辱(用词不当,大致是这个意思).解决办法:php5.3开始后,废

PHP 解决版本问题:"Assigning the return value of new by reference is deprecated"

问题描述:     在最近使用ECSHOP v273帮客户建立了一个商城系统,商城搭建一切ok但在使用中后台发现了一个500错误 在服务器上访问该地址发现了错误信息:"Assigning the return value of new by reference is deprecated" 然后通过源码发现了问题所在,原因是在PHP5.3以后就废除了"=&"符号 解决方案: 去掉&符号直接使用=即可 参考: ASSIGNING THE RETURN

DEPRECATED: Use of this script to execute hdfs command is deprecated.

DEPRECATED: Use of this script to execute hdfs command is deprecated. 本人安装的hadoop版本是2.4.0的,但每次执行命令时都会显示下面的信息 [email protected]_160_34_centos:/usr/local/hadoop-2.4.0> hadoop dfs -ls . DEPRECATED: Use of this script to execute hdfs command is deprecate

perl---window下Mojolicious框架提示Using a hash as a reference is deprecated at template

Using a hash as a reference is deprecated at template example/index.html.ep line 8 Using a array as a reference is deprecated at template example/index.html.ep line 8 很简单 因为没有正确使用hash跟数组造成的 %= %$entries->{$id}->{'id'}; %= %$entries->{$id}->{'t

php 显示php 中数组return Array

php 读取文本中数组,修改指定数组键值.达到统计下载文件排行. <?php header("Content-type:text/html;charset=utf-8");if(isset($_GET['down_id']) && !empty($_GET['down_id'])){ $down_id = $_GET['down_id']; $file='down_id.php'; $du = require_once($file); arsort($du); i

《PHP Manual》阅读笔记2

本次笔记截止到 语言参考 流程控制. 1.没有结合的相同优先级的运算符不能连在一起使用,例如 1 < 2 > 1 在PHP是不合法的.但另外一方面表达式 1 <= 1 == 1 是合法的, 因为 == 的优先级低于 <=.下表按照优先级从高到低列出了运算符.同一行中的运算符具有相同优先级,此时它们的结合方向决定求值顺序. 运算符优先级 结合方向 运算符 附加信息 无 clone new clone 和 new 左 [ array() 右 ** 算术运算符 右 ++ -- ~ (in

phpexcelreader超级简单使用

phpexcelreader超级简单使用 该php类可以到官网下载:http://www.codeplex.com/PHPExcel,下载的文件不能直接使用要看下面的备注. 备注: 1.要将oleread.inc改成oleread.php,修改文件名. 2.要将reader.php中的第31段代码:require_once 'Spreadsheet/Excel/Reader/OLERead.php'; 改成 备注1的文件路径:require_once ‘oleread.php’ (假设olere