FreeBASIC マニュアルのトップに戻る

FreeBASIC ExtLibFastCGI

目次→その他→ライブラリ・ヘッダー索引FastCGI←オリジナル・サイト
目次→FreeBASIC のハッキング→FreeBASIC でのハッキングのための情報外部ライブラリ索引FastCGI←オリジナル・サイト

FastCGI


CGI に対するオープン拡張で、サーバー固有の API に制限されない高機能を提供します。

ウエブ・サイト: http://www.fastcgi.com (2006 の保管庫)
Github: https://github.com/FastCGI-Archives
参照フォーラム: https://freebasic.net/forum/viewtopic.php?f=14&t=28126

利用できる環境: Win32, Linux
include するヘッダー: fastcgi/fastcgi.bi, fastcgi/fcgiapp.bi, fastcgi/fcgi_stdio.bi
ヘッダー・バージョン: 2.4.1-SNAP-0311112127

例:
#include "fastcgi/fcgi_stdio.bi"

Dim As Integer count = 0
While (FCGI_Accept() >= 0)
    count += 1
    Print !"Content-type: text/html\r\n"
    Print !"\r\n"
    Print "<title>FastCGI Hello!</title>"
    Print "<h1>FastCGI Hello!</h1>"
    Print Using "Request number ### running on host <i>&</i>"; count; *getenv("SERVER_NAME");
Wend


外部ライブラリー目次に戻る

ページ歴史:2020-12-31 14:13:32
日本語翻訳:WATANABE Makoto、原文著作者:SirMud

ホームページのトップに戻る

表示-非営利-継承