-2

基本的に私の問題は次のとおりです。次のコードをブラウザ ?phase=1&step=0&fot=falseに入力すると、黒いページが表示されます。

Apacheサーバーのエラーは次のとおりです

PHP Notice: Undefined index: true in C:\Program Files (x86)\Zend\Apache2\htdocs\Proj11\1.php on line 9

} elseif ($_GET['true']) { $fOT = 'true'; }これは最初の行と同じように予想されます。

PHP Notice: Undefined index: true in C:\Program Files (x86)\Zend\Apache2\htdocs\Proj11\1.php on line 138

これは前と同じ行ですが、phase2クラスの__construct内にあります

PHP Notice: Undefined variable: fOT in C:\Program Files (x86)\Zend\Apache2\htdocs\Proj11\1.php on line 17

スクリプトの上部にある行$phase->stepFunction($fOT);です....定義されているので、なぜエラーが発生するのかわかりません...。

なぜ何もしていないのかわかりません、助けてくれてありがとうthx

君たちありがとう!

            if (empty ($_GET['fot']) ) { 
                    $fOT = 'false'; 
                    } elseif ($_GET['true']) { $fOT = 'true'; }

            $phase = $_GET['phase'];        
            if(empty ($phase)){
                $phase = new phase1();
                $phase->start();
                } elseif ($phase = 1) {
                    $phase = new phase2();
                $phase->stepFunction($fOT, $_GET['step']);
                    }
                 class phase 1 { ... }

                    class phase2 {
        function __construct () {

        $dbFile = 'dbconfig.php';
        $this->dbFile = $dbFile;
        include_once ("$this->dbFile"); 


        $step = $_GET["step"];

        $username = $DB_USER;
        $password = $DB_PASS;
        $server = $DB_SERVER;
        $dbName = $DB_NAME;

        $this->step = $step;
        $this->dbFile = $dbFile;
        $this->username = $username;
        $this->password = $password;
        $this->server = $server;
        $this->dbName = $dbName;

        $db = new PDO ('mysql:host=' .$server.';dbname='.$this->dbName,$this->username,$this->password);

        $this->db = $db;

        if (empty ($_GET['fot']) ) { 
        $fOT = 'false'; 
        } elseif ($_GET['true']) { $fOT = 'true'; }

    $this->IDB = $this->handleDatabase( 1 );
    $this->IDB2 = $this->handleDatabase( 2);
    $this->IDB3 = $this->handleDatabase( 3);
        }



public function handleDatabase ($num = 1){
// Prepare SQL Statements
    $IDB1 = $this->db->prepare( 
         "CREATE TABLE pages (
          id int(11) NOT NULL auto_increment,
         subject_id int(11) NOT NULL,
          menu_name varchar(30) NOT NULL,
          position int(3) NOT NULL,
          visible tinyint(1) NOT NULL,
          content text NOT NULL,
          PRIMARY KEY  (id)
    )ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8");

    $IDB2 = $this->db->prepare("
        CREATE TABLE subjects (
          id int(11) NOT NULL auto_increment,
          menu_name varchar(30) NOT NULL,
          position int(3) NOT NULL,
          visible tinyint(1) NOT NULL,
          PRIMARY KEY  (id)
    )ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8");

    $IDB3 = $this->db->prepare("
        CREATE TABLE users (
          id int(11) NOT NULL auto_increment,
          username varchar(50) NOT NULL,
          hashed_password varchar(40) NOT NULL,
          PRIMARY KEY  (id)
    )ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8");

    $name = "IDB".$num;
return isset( $$name)?$$name:false;
}
//Set Option to True or False

function createTablePages ($fOT){

    $r1 = $this->db->query('SHOW TABLES LIKE \'page\'');
    if (count($r1->fetchAll()) > 0 && $fOT == 'false') {
        echo "The table PAGE exists";

    } elseif ($fOT == 'true') {
        $this->IDB->execute();
        echo "enteres";
                $this->stepFunction (1,false);
    }
}
function createTableSubjects ($fOT){

    $r2 = $this->db->query('SHOW TABLES LIKE \'subjects\'');
    if (count($r2->fetchAll()) > 0  && $fOT == 'false') {
        echo "The table SUBJECTS exists ";

    } elseif ($fOT == 'true') {

        $this->IDB2->execute();
        $this->stepFunction (2,false);

    }
}

function createTableUsers ($fOT){

    $r3 = $this->db->query('SHOW TABLES LIKE \'users\'');   
    if (count($r3->fetchAll()) > 0  && $fOT == 'false') {
        echo "The table USERS exists";
    } elseif ($fOT == 'true') {
        $this->IDB3->execute();
        echo "Would you like to populate all the tables?";
    }   
}


public function stepFunction ($fOT,$step){

switch ($step) {
    case 0: 
            $this->createTablePages ($fOT);
            break;
    case 1: 
            $this->createTableSubjects($fOT);
            break;
    case 2: $this->createTableUsers ($fOT);
            break;
    }


}

    }
4

1 に答える 1

1

グローバル スコープのメソッド内で定義された変数は使用できません。

これを変更すると、いくつかのエラーが解決します

    $this->IDB = $this->handleDatabase()->$IDB;
    $this->IDB2 = $this->handleDatabase()->$IDB2;
    $this->IDB3 = $this->handleDatabase()->$IDB3;

    $this->IDB = $this->handleDatabase( 1 );
    $this->IDB2 = $this->handleDatabase( 2);
    $this->IDB3 = $this->handleDatabase( 3);

および関数ハンドルデータベースへ

public function handleDatabase ( $num = 1){
// Prepare SQL Statements
$IDB1 = $this->db->prepare( 
     "CREATE TABLE pages (
      id int(11) NOT NULL auto_increment,
     subject_id int(11) NOT NULL,
      menu_name varchar(30) NOT NULL,
      position int(3) NOT NULL,
      visible tinyint(1) NOT NULL,
      content text NOT NULL,
      PRIMARY KEY  (id)
)ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8");

$IDB2 = $this->db->prepare("
    CREATE TABLE subjects (
      id int(11) NOT NULL auto_increment,
      menu_name varchar(30) NOT NULL,
      position int(3) NOT NULL,
      visible tinyint(1) NOT NULL,
      PRIMARY KEY  (id)
)ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8");

$IDB3 = $this->db->prepare("
    CREATE TABLE users (
      id int(11) NOT NULL auto_increment,
      username varchar(50) NOT NULL,
      hashed_password varchar(40) NOT NULL,
      PRIMARY KEY  (id)
)ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8");

$name = "IDB".$num;
return isset( $$name)?$$name:false;
}

または、メソッドで直接 $this->IDB を設定するだけです:

public function handleDatabase ( ){
// Prepare SQL Statements
$this->IDB  = $this->db->prepare( [...]

他にもいくつか問題があります

 $this->IDB3->execute;

何もしないで、次のように変更します。

 $this->IDB3->execute();
于 2012-08-29T17:31:46.987 に答える