Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\user\adodb\adodb-xmlschema.inc.php on line 385
$this->data =& new dbData( $this, $attributes );
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\user\adodb\adodb-xmlschema.inc.php on line 385
$this->data =& new dbData( $this, $attributes );
$this->data =& new dbData( $this, $attributes );
これは、別の変数に割り当てるときにオブジェクトのコピーを防ぐための古いPHP4スタイルのコードです。改善されたPHP5を使用すると、次のように簡単に使用できます。
$this->data = new dbData( $this, $attributes );
行を変更して、次のようにします$this->data = new dbData( $this, $attributes );