我不明白爲什麼我的變量沒有設置多包含後。共享變量包含多個(php)
在header.php中,我有一個變量$ a在accueil.php
public function defaultShow(){
include(dirname(__FILE__)."/../view/app/header.php");
include(dirname(__FILE__)."/../view/app/accueil.php");
include(dirname(__FILE__)."/../view/app/footer.php");
}
$一個設置。它的作品
,但如果我的代碼是
public function defaultShow(){
self::includeView("app/header");
self::includeView("app/accueil");
self::includeView("app/footer");
}
public static function includeView($view){
include dirname(__FILE__)."/../view/".$view.".php";
}
加載accueil.php而是$ a。本文件是空的。
在header.php中設置的所有變量是accueil.php
爲什麼是空的?
感謝答覆
紀堯姆
全球$一個; $ a ='max'; –