タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

Perlとfastcgiに関するBoBppのブックマーク (1)

  • FCGI - Fast CGI モジュール

    名前 NAME FCGI - Fast CGI モジュール FCGI - Fast CGI module 書式 SYNOPSIS use FCGI; my $count = 0; my $request = FCGI::Request(); while($request->Accept() >= 0) { print("Content-type: text/html\r\n\r\n", ++$count); } 説明 DESCRIPTION 機能 Functions: FCGI::Request リクエストハンドルの生成. 次のパラメータを任意で指定できます. Creates a request handle. It has the following optional parameters: 入力ファイルハンドル (デフォルト: \*STDIN) input perl file hand

  • 1