赞
踩
tt是一个perl模块,一个出色的模版引擎
- perl -MCPAN -e shell
- install Template
use Template;
my $tt = Template->new(
{
INCLUDE_PATH => '/home/sma/cgi-bin/Tmpl',
INTERPOLATE => 1,
}) || die "$Template::ERROR\n";
my $vars = {
name => 'Wayne',
email => 'prosmarter@163',
deadline => 'the next chorus',
};
$tt->process('hi.html', $vars) || die $tt->error(), "\n";
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。