的index.php以下錯誤的原因是什麼?
<?
include "controller.php"
?>
Controller.php這樣
<?
include "class/clientclass.php";
?>
類/ clientclass.php
<?
include "configuration.php";
include "class/database.php";
$db=new Database();
?>
的configuration.php
<?php
class myConfig {
public $host = 'localhost';
public $user = 'root';
public $password = 'root';
public $db = 'dojo';
} ?>
類/ database.php中
<?
class Database extends myConfig {
function Database()
{
mysql_connect($this->host,$this->user,$this->password);
mysql_select_db($this->db);
}
}
?>
現在我得到的錯誤是
Fatal error: Cannot redeclare class myConfig in /var/www/dojo/configuration.php on line 2
什麼建議嗎?
你使用像Yii的任何框架? – looper
使用'require_once'或'include_once'。使用'__autoload'也是一個很好的習慣。 – Leri
不,我只是使用這5個文件 – vusan