Smarty 图标

您可以根据商标声明使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如果您有赞助、广告、新闻或其他方面的疑问,请联系

使用 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);

?>