CGI的函数

CGI 不是语言而是common language gateway, 是借助STDIN, STDOUT来操作,简单的例子,

#!/usr/bin/perl -wT
print "Content-type: text/html\n\n";
print <<EndOfHTML;
<html><head><title>Test Page</title></head>
<body>
<h2>Hello, world!</h2>
</body></html>
EndOfHTML

把以上cgi,放在www docuements的目录里,

访问 http://www.cgi101.com/book/ch1/third.cgi

CGI.pm Module

The CGI.pm 模块式 Perl  5.004里面的标准库。

use CGI qw(:standard);

The qw(:standard) 表示我们从CGI.pm.调用"standard" 函数。

调用函数,如果不传参数,可以不要括号,如下,
functionname(arguments)

CGI.pm有很多函数,我们可以用的如以下几个,

header;
start_html;
end_html;

例如,print start_html("Hello World");会打印出,
<html>
<head>
<title>Hello World</title>
<head>
<body>

例如,print start_html(-title=>"Hello World",
	-bgcolor=>"#cccccc", -text=>"#999999",
 -background=>"bgimage.jpg");
会打印出如下,
<body bgcolor="#cccccc" text="#999999"  background="bgimg.jpg">

end_html 会打印如下的标签

</body>

</html>

因为perl是OO的,你可以完全读懂以下两段程序是一个意思,

use CGI qw(:standard);

print header;

print start_html("Hello World");

以下是OO的,

use CGI;                    # don't need qw(:standard)
$cgi = CGI->new;         # ($cgi is now the object)
print $cgi->header;      # function call: $obj->function
print $cgi->start_html("Hello World");

再上一个完整的程序,
#!/usr/bin/perl -wT
use CGI qw(:standard);
print header;
print start_html("Hello World");
print "<h2>Hello, world!</h2>\n";
print end_html;
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值