模板系统范围问题

时间:2009-07-21 18:09:42

标签: php templates scope

我正在尝试在PHP中创建一个框架View系统,但我无法弄清楚如何获取嵌入式视图以接收其父变量。例如:

查看课程

class View
{
    private $_vars=array();
    private $_file;

    public function __construct($file)
    {
        $this->_file='views/'.$file.'.php';
    }

    public function set($var, $value=null)
    {
        if (is_array($var))
        {
            $this->_vars=array_merge($var, $this->_vars);
        }
        else
            $this->_vars[$var]=$value;

        return $this;
    }

    public function output()
    {
        if (count($this->_vars))
            extract($this->_vars,  EXTR_REFS);
        require($this->_file);
        exit;
    }

    public static function factory($file)
    {
        return new self($file);
    }
}

test.php(顶级视图)

<html>
    <body>
        Hey <?=$name?>! This is <?=$adj?>!
        <?=View::factory('embed')->output()?>
    </body>
</html>

embed.php(嵌入test.php

<html>
    <body>
        Hey <?=$name?>! This is an embedded view file!!
    </body>
</html>

代码:

$vars=array(
    'name' => 'ryan',
    'adj' => 'cool'
);
View::factory('test')->set($vars)->output();

输出:

Hey ryan! This is cool! Hey [error for $name not being defined] 
this is an embedded view file!!

问题是我在顶级视图中设置的变量没有传递给嵌入式视图。我怎么能做到这一点?

4 个答案:

答案 0 :(得分:1)

所以,我并没有完全回答你的问题,但这是我超级简单的手工制作的模板系统。虽然界面不同,但它支持您尝试做的事情。

// Usage
$main = new SimpleTemplate("templating/html.php");
$main->extract($someObject);
$main->extract($someArray);
$main->name = "my name";
$subTemplate = new SimpleTemplate("templating/another.php");
$subTemplate->parent($main);
$main->placeholderForAnotherTemplate = $subTemplate->run();
echo $main; // or $main->run(); 

// html.php
<html><body><h1>Title <?= $name ?></h1><p><?= $placeHolderForAnotherTemplate ?></p></body></html>

    <?php
// SimpleTemplate.php
function object_to_array($object)
{
    $array = array();
    foreach($object as $property => $value)
    {
        $array[$property] = $value;
    }

    return $array;
}

class SimpleTemplate
{
    public $source;
    public $path;
    public $result;
    public $parent;

    public function SimpleTemplate($path=false, $source=false)
    {
        $this->source = array();
        $this->extract($source);
        $this->path($path);
    }

    public function __toString()
    {
        return $this->run();
    }

    public function extract($source)
    {
        if ($source)
        {
            foreach ($source as $property => $value)
            {
                $this->source[$property] = $value;
            }
        }
    }

    public function parent($parent)
    {
        $this->parent = $parent;
    }

    public function path($path)
    {
        $this->path = $path;
    }

    public function __set($name, $value)
    {
        $this->source[$name] = $value;
    }

    public function __get($name)
    {
        return isset($this->source[$name]) ? $this->source[$name] : "";
    }

    public function mergeSource()
    {
        if (isset($this->parent))
            return array_merge($this->parent->mergeSource(), $this->source);
        else
            return $this->source;
    }

    public function run()
    {
        ob_start();
        extract ($this->mergeSource());
        include $this->path;
        $this->result = ob_get_contents();
        ob_end_clean();
        return $this->result;
    }
}

答案 1 :(得分:0)

好吧,你创建了一个新的类实例,因此嵌入式模板中没有定义变量。你应该尝试复制对象,而不是创建一个新对象。

编辑:我说的是工厂方法

答案 2 :(得分:0)

主要问题是您的观点彼此之间没有直接的了解。通过这称呼:

<?=View::factory('embed')->output()?>

在“父”视图中,您创建并输出一个模板,该模板不知道它在另一个模板中。

我可以在这里推荐两种方法。

#1 - 关联您的模板。

通过使嵌入式模板成为父模板的“子”,您可以允许他们在output()时访问父变量。我在我构建的View系统中使用这种方法。它是这样的:

$pView = new View_Parent_Class();
$cView = new View_Child_Class();
$pView->addView($cView);

$pview->render()时,子视图很容易被访问父变量。

这种方法可能需要对你进行大量的重构,所以我将省略脏的细节,然后进入第二种方法。

#2 - 传递父变量

根据您迄今为止采用的方法,这可能是最简单的方法。在输出方法中添加一个可选参数,并稍微重写一次,如下所示:

public function output($extra_vars = null)
{
    if (count($this->_vars))
        extract($this->_vars,  EXTR_REFS);
    if (is_array($extra_vars)) extract($extra_vars, EXTR_REFS);
    require($this->_file);
    exit;
}

如果你也添加一个简单的getter方法:

public function get_vars()
{
    return $this->_vars;
}

然后,您可以使用对父变量的有效读取访问权限嵌入您的文件:

<?=View::factory('embed')->output($this->get_vars())?>

$this将是对当前模板的引用,即。父母。请注意,由于两次extract调用,您可以通过此方法进行变量名称冲突。

答案 3 :(得分:0)

您可以将$ _vars属性设置为静态,不是特别优雅,但可以用于您想要实现的目标。

旁注...你的set()函数中的array_merge()是错误的,交换你的2个变量。