Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我今天有一个简单的问题: cgi 程序中的double 到底是做什么的:\nprintf("Content-type: text/html\n\n");
\n
printf("Content-type: text/html\n\n");
一个空行将 HTTP 响应标头与 HTTP 响应正文分开。
没有一个,就无法知道正文的第一行是正文还是另一个标题。
HTTP虽然\r\n不使用\n。我建议使用库来抽象 CGI 的细节,而不是手动进行。
\r\n