我有一个遗留网站(不是我写的),过去几年一直在服务器上使用php5。我正在创建一个带有php7的新服务器并测试哪些有效并且已损坏。
该网站使用pear包含文件pear/lib/DB.php
。我创建了一个只有代码
<?php
require_once( "DB.php" );
?>
这与完整网站提供完全相同的错误。
出现的错误是
PHP Parse error: syntax error, unexpected 'new' (T_NEW) in /local/sites/php/pear/lib/DB.php on line 310
该网站只需要DB.php,因为我已将Pear添加到include_path
中的php.ini
检查Pear的版本给了我以下内容 $梨版
PEAR Version: 1.10.3
PHP Version: 7.0.15-0ubuntu0.16.04.4
Zend Engine Version: 3.0.0
Running on: Linux cdc-migration-0d 3.13.0-103-generic #150-Ubuntu SMP Thu Nov 24 10:34:17 UTC 2016 x86_64
从我的研究中可以看出,Pear的最新版本与php7兼容,因此这些应该可以协同工作。任何想法为什么只需要在测试页面上DB.php
会立即生成解析错误?
编辑: 梨文件中生成错误的代码如下
function &factory($type, $options = false)
{
if (!is_array($options)) {
$options = array('persistent' => $options);
}
if (isset($options['debug']) && $options['debug'] >= 2) {
// expose php errors with sufficient debug level
include_once "DB/{$type}.php";
} else {
@include_once "DB/{$type}.php";
}
$classname = "DB_${type}";
if (!class_exists($classname)) {
$tmp = PEAR::raiseError(null, DB_ERROR_NOT_FOUND, null, null,
"Unable to include the DB/{$type}.php file",
'DB_Error', true);
return $tmp;
}
@$obj =& new $classname; // ##### this is line 310 that generates the error #####
foreach ($options as $option => $value) {
$test = $obj->setOption($option, $value);
if (DB::isError($test)) {
return $test;
}
}
return $obj;
}
答案 0 :(得分:3)
@$obj =& new $classname;
自PHP 5.3起,不推荐使用引用来指定new的返回值。 http://php.net/manual/en/migration53.deprecated.php
这是编写PHP的PHP4风格。
改为写:
$obj = new $classname;
自PHP7起已删除。
请参阅:http://php.net/manual/en/migration70.incompatible.php#migration70.incompatible.other.new-by-ref