我开发了以下CGI脚本并在Apache 2(
http://localhost/test.chtml)上运行.我在PHP(
http://localhost/verifica.php)中做了相同的脚本.后来我使用Apache Benchmark工具执行了Apache基准测试.结果显示在图像中.
#include <stdlib.h> int main(void) { printf("%s%c%c\n","Content-Type:text/html;charset=iso-8859-1",13,10); printf("<TITLE>Multiplication results</TITLE>\n"); printf("<H3>Multiplication results</H3>\n"); return 0; }
有人可以解释为什么PHP比CGI脚本提供更多的请求?