1

好吧,我已经用同样的风格写作了一段时间了,突然间我在 pear config 中遇到了一个错误。

错误:

Deprecated: Assigning the return value of new by reference is deprecated in E:\xampp\php\PEAR\Config.php on line 80

Deprecated: Assigning the return value of new by reference is deprecated in E:\xampp\php\PEAR\Config.php on line 166

我的索引页面(是我唯一改变的):

<?php

include("library/config.php"); 
include("library/functions/core.php");

// Defualt Heading
$heading = "";

// Load Page Model
loadModel($path0,$path1);

// Load User Language
loadLanguage($path0,$path1);

// Load Page Header
loadHeader();

// Load Page Body
loadPage($path0,$path1);

// Load Page Footer
loadFooter();
?>

我唯一改变的是 config.php 和 core.php 的位置,它们被放置在一个名为 library 的新文件夹下更深的 1 个文件夹。

4

1 回答 1

2

当您收到错误config .php并向我们展示index.php代码时

通过阅读错误。有一些功能具有以下格式

function whatever (...)
{
   return &$somevalue;
}

要解决这个问题,你应该&先删除$somevalue

this

于 2012-07-03T05:00:48.120 回答