我试图在我的索引中需要一个标题页,但它不会加载变量。
在我的对象内部:
public function autoload($foo, array $bar = array()) {
$Ar = array();
$Ar['Page-Title'] = $bar['Page-Title'];
$Ar['Header-Requires'] = $bar['Header-Requires'];
require_once $this->BaseDIR . $foo;
}在我的索引页面中:
$Ar = array();
$Ar['Page-Title'] = 'Homepage';
$Obj->autoload('header.php', $Ar);标题页已加载,但未在文件上运行以下行(第1行):
// test
echo $Ar['Page-Title'];有什么建议吗?
https://stackoverflow.com/questions/38276995
复制相似问题