最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

PHP错误Deprecated: Assigning the return value of new

时间:2014-06-09 16:39来源: 作者: 点击:
今天把php升级到php5.3之后出现在使用 = 时提示PHP错误Deprecated: Assigning the return value of new by reference is deprecated in了,后来找了一些才发php5.3不支持=了。 错误行:$mysql = new mysql; 错误原因:php5.3开

今天把php升级到php5.3之后出现在使用 =& 时提示PHP错误Deprecated: Assigning the return value of new by reference is deprecated in了,后来找了一些才发php5.3不支持=&了。

错误行:$mysql =& new mysql;

错误原因:php5.3开始后,废除了php中的”=&”符号

解决办法:

1.要想复制,直接用=引用即可。详细如下:1、PHP5对象复制是采用引用的方式;

2、如果不采用引用方式,则需要在复制对象时加关键字 clone;

3、如果在复制的过程中,同时要变更某些属性,则增加函数_clone();

(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容