不推荐使用:不推荐使用引用分配new的返回值

时间:2013-02-19 06:36:20

标签: php

  

不推荐使用:通过引用分配new的返回值是   在C:\ xampp \ htdocs \ user \ adodb \ adodb-xmlschema.inc.php中弃用   第385行

$this->data =& new dbData( $this, $attributes );

2 个答案:

答案 0 :(得分:5)

$this->data =& new dbData( $this, $attributes );

这是旧的PHP4样式代码,用于在将对象副本分配给另一个变量时阻止对象副本。 PHP5已得到改进,你可以简单地使用:

$this->data = new dbData( $this, $attributes );

答案 1 :(得分:3)

更改该行,使其显示为$this->data = new dbData( $this, $attributes );