我开发了以下 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 脚本多吗?