如何在CGI中打印纯文本?

时间:2015-05-27 01:48:26

标签: perl

我正在使用HTTP::Server::Simple::CGI

 print $cgi->header("text/plain"),
       $cgi->start_html("Hello"),
       $cgi->h1("Hello $who!"),
       $cgi->end_html;

有类似$cgi->start_text("hello")的内容吗?

我想输出纯文本。

1 个答案:

答案 0 :(得分:7)

只需打印出来......

 print $cgi->header("text/plain"),
       "hello";