자신이 밟은 구멍은 스스로 메워야지, 남을 탓하지 마세요.
제가 멍청해서 gcc도 잘 안쓰는데 감히 g++를 써보니 이런 간단한 문제가 해결되더라구요. 수요가 많지 않습니다. 시도해 볼 수 있습니다. 위 코드는
#include <stdlib.h> #include <string.h> #include "fcgi_stdio.h" #include "fcgiapp.h" int main(int argc,char *argv[]) { int count = 0; int i, scale; char* pathInfo; FCGX_Stream *in, *out, *err; FCGX_ParamArray envp; while (FCGX_Accept(&in, &out, &err, &envp) >= 0) { const char * query_string = FCGX_GetParam("QUERY_STRING", envp); FCGX_FPrintF(out,"Content-type: text/html\r\n" \ "\r\n" \ "<html>" \ "<head><title>test</title> </head><body><p> %s",query_string); char**temp = envp; while((*temp)!=NULL) { FCGX_FPrintF(out,"%s\r\n",*temp); temp++; } } return 0; }
C++의 세계를 이해하지 못하시네요! ! !
C++ 능숙도란? !
오늘 3대3 농구 경기, 우리가 이겼어요!
자!
위 내용은 2016-6-21 잡다한 내용을 포함한 내용을 소개한 것입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.