Template Toolkit

码农软件 · 软件分类 · 模板引擎 · 2019-08-25 14:44:35

软件介绍

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

本文地址:https://www.codercto.com/soft/d/13143.html

最优化导论

最优化导论

桑达拉姆 / 人民邮电出版社 / 2008-4 / 59.00元

最优化导论(英文版),ISBN:9787115176073,作者:(美国)(Sundaram、R、K)桑达拉姆一起来看看 《最优化导论》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具