0

如果我SELECT从源文件 (sources/Example.php) 进行查询,那么如何将返回的数据传递给被调用的模板函数?

来源/Example.php

function DoSomething()
{
    global $context;
    loadTemplate('Example');
    $data = <get some data by querying the database>
    .
    .
    .
    .
    .

    $context['sub_template'] = 'listData';

    // now pass this $data to the listData function
}

主题/默认/Example.template.php

function template_listData()
{
    // access $data here
}

我能想到的一件事是在$context数组中创建一个键并将数据分配给该键。但我想知道是否有更好/替代的方法。

4

0 回答 0