내 포함 변수가 다중 포함 이후에 설정되지 않은 이유를 알 수 없습니다.변수를 멀티로 공유합니다. include (php)
는 header.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");
}
accueil.php $에서 A가 설정되는 변수 $을 갖는다. 그건
을 작동하지만 내 코드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를; $ a = '최대'; –