perl – 如何在CGI中打印纯文本?

前端之家收集整理的这篇文章主要介绍了perl – 如何在CGI中打印纯文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用HTTP :: Server :: Simple :: CGI

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

有没有像$cgi-> start_text(“你好”)这样的东西?

我想输出纯文本.

解决方法

只需打印它……

print $cgi->header("text/plain"),"hello";
原文链接:/Perl/778758.html

猜你在找的Perl相关文章