我是PHP OOP概念中的新人。第一件引起我注意的事情是,我不能在腳本開始時寫一次php腳本給多個類。我的意思是PHP僅包含外部類一次
<?php
include 'var.php';
class userSession{
/* all the code */
public function getVariables(){
/* use of variables which are inside var.php */
}
public function getOtherVariables(){
/* use of variables which are inside var.php */
}
}
?>
這是行不通的。
我不得不這樣做 -
<?php
class userSession{
/* all the code */
public function getVariables(){
include 'var.php';
/* use of variables which are inside var.php */
}
public function getOtherVariables(){
include 'var.php';
/* use of variables which are inside var.php */
}
}
?>
什麼我失蹤?
var.php的內容是什麼。 – 2010-08-08 11:13:50
在第一個示例中,您將var.php的內容包含在全局空間中。 在第二個示例中,您將var.php的內容包含在您類的方法的本地空間中。 你究竟想在這裏做什麼? – 2010-08-08 11:15:19
假設只有兩個變量。 '<?php $ var1 =「hello」; $ VAR2 = 「世界」; ?> – 2010-08-08 11:15:39