我的类数据库出现错误致命错误:无法重新声明类属性 ....Properties.php(属性接近 PHP 5 的 java.util.Properties API 的实现版权(C)2005 Craig Manley)
<?php
include_once("common/libs/Properties.php");
// if (!class_exists('Properties')) {
// require_once("common/libs/Properties.php");
// }
class Database {
var dbhost;
function __construct() {
$dbIpAddressProp = new Properties();
// $dbIpAddressProp->load(file_get_contents('./confEMS',FILE_USE_INCLUDE_PATH));
// $this->dbhost = $dbIpAddressProp->getProperty("dbIpAddress");
}
function __destruct() {
pg_close($this->dbconn);
// echo 'destruct';
}
}
?>