开放扩展CGI,提供高性能,而不受服务器特定API的限制。
网站:http://www.fastcgi.com
支持平台:Win32,Linux
标题包括:fastcgi / fastcgi.bi
标题版本:2005年
例子
#include "fastcgi/fcgi_stdio.bi"
Dim As Integer count = 0
While (FCGI_Accept() >= 0)
count += 1
Print !"内容类型:text / html \\ r \\ n"
Print !"\r\n"
Print "<title >FastCGI Hello!</ title >"
Print "<h1 >FastCGI Hello!</ h1 >"
Print Using "请求号码###在主机<上运行i >&</ i >"; count; *getenv("SERVER_NAME");
Wend