好吧,我现在已经用同样的风格写了一段时间了,突然间我在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个文件夹。
答案 0 :(得分:2)
当您收到config .php
中的错误并向我们显示index.php
代码
通过阅读错误。有一些函数有以下格式
function whatever (...)
{
return &$somevalue;
}
要解决此问题,您应该在&
$somevalue
阅读this