current_time-print.cgi

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

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

⌨️ 快捷键说明

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