Smarty成员方法:getTags()
2018-12-02 15:16 更新
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);
?>
以上内容是否对您有帮助:

免费 AI IDE


更多建议: