📄 current_time-cgi_pm.cgi
字号:
#!/usr/bin/perl -wTuse strict;use CGI;my $q = new CGI;my $timestamp = localtime;print $q->header( "text/html" ), $q->start_html( -title => "The Time", -bgcolor => "#ffffff" ), $q->h2( "Current Time" ), $q->hr, $q->p( "The current time according to this system is: ", $q->b( $timestamp ) ), $q->end_html;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -