PHP从类中包含的文件访问相同的类

时间:2012-04-01 14:31:43

标签: php oop class

这是班级:

的functions.php

class buildPage {

    public function Set($var,$val){
        $this->set->$var = $val;
    }

    function Body(){
        ob_start();

        include('pages/'.$this->set->pageFile);
        $page = ob_get_contents();

        ob_end_clean();

        return $page;
    }

    function Out(){
        echo $this->Body();
    }
}

所以这是脚本的主要(索引)页面。

的index.php

include_once('include/functions.php');

$page = new buildPage();

$page->Set('pageTitle','Old Title');    
$page->Set('pageFile','about.php');

$page->Out();

现在你可以看到,它通过类包含了about.php文件,实际上是在类中。

现在,我想访问相同的buildPage()类来更改页面标题。

about.php

<?php

$this->Set('pageTitle','New Title');
echo '<h1>About Us</h1>';

?>

但不幸的是,没有任何事情发生。

请善待几分钟给我一些帮助!

1 个答案:

答案 0 :(得分:0)

行。我自己设法解决了这个问题。

更改函数Body()和Out(),如下所示:

function Body(){

    $pageFile = $this->Get('pageFile');
    if(empty($pageFile)){
        $pageFile = 'home.php';
    }

    $page_path = 'pages/'.$pageFile;

    ob_start();

    include($page_path);

    if(!empty($page_set_arr) && is_array($page_set_arr)){
        foreach($page_set_arr AS $k=>$v){
            $this->Set($k,$v);
        }
    }

    $page = ob_get_clean();

    return $page;
}

function Out(){
    $body = $this->Body();

    echo $this->Header();
    echo $body;
    echo $this->Footer();
}

然后将文件更改为about.php,如下所示:

<?php

$page_set_arr = array(
                    'pageTitle' => 'About Us'
                );

?>

<h1>About Us</h1>