'config.php'
$_SESSION['ROOT'] = 'www.test.com.tw';
## 第一种写法 ##
require_once('config.php');
class test{
public $rootUrl = $_SESSION['ROOT'];
function __construct(){
}
function getRoot(){
return $this->rootUrl;
}
}
## 第二种写法 ##
require_once('config.php');
class test{
public $rootUrl;
function __construct(){
$this->rootUrl = $_SESSION['ROOT'];
}
function getRoot(){
return $this->rootUrl;
}
}
$test = new test();
$test->getRoot();
第一种写法会抓不到值, 第二种则可以
想不太通原因, 求大大解答, 谢谢!