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

?>
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号