oldinterface.pod

来自「FastCGI,语言无关的、可伸缩架构的CGI开放扩展」· POD 代码 · 共 51 行

POD
51
字号
=head1 NAMEFCGI - Fast CGI module=head1 SYNOPSIS    use FCGI;    $count = 0;    while(FCGI::accept() >= 0) {	print("Content-type: text/html\r\n\r\n", ++$count);    }=head1 DESCRIPTIONFunctions:=over 4=item FCGI::accept()Accepts a connection. Returns 0 on success.If a connection has been accepted before, the oldone will be finished first.=item FCGI::finish()Finishes accepted connection.=item FCGI::flush()Flushes accepted connection.=item FCGI::set_exit_status(status)Sets the exit status that finish returns to the server.=item FCGI::start_filter_data()Does anyone use this function ?=back=head1 AUTHORSven Verdoolaege <skimo@kotnet.org>=cut__END__

⌨️ 快捷键说明

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