如何在html中输入内联perl代码,比如php?

前端之家收集整理的这篇文章主要介绍了如何在html中输入内联perl代码,比如php?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你不知道一个方法来执行像 PHP这样的代码吗?
<html>
<?perl
print( 'test' );
?>
</html>

解决方法

使用 HTML::Mason
<%perl>
use Date::Calc;
my @today  = Date::Calc->Today();
my $str = "$today[0]-$today[1]-$today[2]";
</%perl>

<html>
<body>
Today is <%$str %>
</body></html>

Apache配置:

PerlModule HTML::Mason::ApacheHandler
<Location /usr/local/apache/htdocs/mason>
SetHandler perl-script
PerlHandler HTML::Mason::ApacheHandler
</Location>

猜你在找的HTML相关文章