微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Template Toolkit

程序名称:Template Toolkit

授权协议: 未知

操作系统: 跨平台

开发语言: Perl

Template Toolkit 介绍

Template Toolkit 是一个快速、灵活和高可扩展的模板处理系统。可以用来处理各种规模的网页

下面是 Perl 使用该工具的例子:

模板文件内容

Dear [% name %],

It has come to our attention that your account is in   
arrears to the sum of [% debt %].

Please settle your account before [% deadline %] or we   
will be forced to revoke your Licence to Thrill.

The Management.

源程序:

use Template;

my $tt = Template->new({  
    INCLUDE_PATH => '/usr/local/templates',  
    INTERPOLATE  => 1,  
}) || die "$Template::ERROR\n";

my $vars = {  
    name     => 'Count Edward van Halen',  
    debt     => '3 riffs and a solo',  
    deadline => 'the next chorus',  
};

$tt->process('letters/overdrawn', $vars)  
    || die $tt->error(), "\n";

Template Toolkit 官网

http://www.template-toolkit.org/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐