Smarty 是什么?
为什么使用它?
用例和工作流
语法比较
模板继承
最佳实践
速成课程
getTags() — 返回模板使用到的标签
string getTags(object template);
此函数为模板使用到的所有标签返回标签名/属性对数组。它使用以下参数:
template
是模板对象。
此函数为实验性函数。
示例 14.29。getTags()
<?php include('Smarty.class.php'); $smarty = new Smarty; // create template object $tpl = $smarty->createTemplate('index.tpl'); // get tags $tags = $smarty->getTags($tpl); print_r($tags); ?>