如果我从源文件(sources / Example.php)中进行SELECT
查询,那么如何将返回的数据传递给正在调用的模板函数?
sources / 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
}
themes / default / Example.template.php
function template_listData()
{
// access $data here
}
我能想到的一件事是在$context
数组中创建一个键并将数据分配给该键。但我想知道是否有更好/替代的方法。