codecamp

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

?>
Smarty成员方法getRegisteredObject()
Smarty成员方法:getTemplateDir()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定