current_time-here_doc.cgi

来自「嵌入式WEB」· CGI 代码 · 共 24 行

CGI
24
字号
#!/usr/bin/perl -wTuse strict;use CGI;my $timestamp = localtime;print <<END_OF_MESSAGE;Content-type: text/html<html>  <head>    <title>The Time</title>  </head>    <body bgcolor="#ffffff">    <h2>Current Time</h2>    <hr>    <p>The current time according to this system is:     <b>$timestamp</b></p>  </body></html>END_OF_MESSAGE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?