Smarty成员方法:getTags()
Name
getTags() — 取得模板标签
说明
string getTags(object template);该函数将返回模板内全部的标签名/值。 参数如下:
template模板对象
Note
该函数是实验性的!
Example 14.29. getTags()
<?php
include('Smarty.class.php');
$smarty = new Smarty;
// 创建模板对象
$tpl = $smarty->createTemplate('index.tpl');
// 取得标签
$tags = $smarty->getTags($tpl);
print_r($tags);
?>