Common.php
Page.php
Index.php
Common.php
class Common extends Controller{
public $conf;
function __construct(){
$this->conf=getSet();
$this->assign('conf',$this->conf);
}
}
Page.phpclass Page extends Common
{
function __construct()
{
parent::__construct();
}
Index.phpclass Index extends Common
{
function __construct()
{
parent::__construct();
}
在page里面可以打印$conf但在index里面确没法打印 $conf 了...
最佳答案
