CGI是一个公共网关接口。顾名思义,它是所有东西的“通用”网关接口。从名字上看,它是如此的琐碎和幼稚。我觉得我明白了,每次遇到这个词我都有这种感觉。但坦白说,我没有。我还是很困惑。

我是一个有网页开发经验的PHP程序员。

用户(客户端)请求页面——> webserver(->嵌入式PHP ---->服务器端(PHP)脚本—> MySQL服务器。

现在说我的PHP脚本可以从MySQL服务器和MATLAB服务器和其他服务器获取结果。

PHP脚本是CGI?因为它的接口之间的web服务器和所有其他服务器?我不知道。有时他们称CGI为技术,有时他们称CGI为程序或其他服务器。

What exactly is CGI? Whats the big deal with /cgi-bin/*.cgi? What's up with this? I don't know what is this cgi-bin directory on the server for. I don't know why they have *.cgi extensions. Why does Perl always comes in the way. CGI & Perl (language). I also don't know what's up with these two. Almost all the time I keep hearing these two in combination "CGI & Perl". This book is another great example CGI Programming with Perl. Why not "CGI Programming with PHP/JSP/ASP"? I never saw such things. CGI Programming in C, confuses me a lot. "in C"?? Seriously?? I don't know what to say. I'm just confused. "in C"?? This changes everything. Program needs to be compiled and executed. This entirely changes my view of web programming. When do I compile? How does the program gets executed (because it will be a machine code, so it must execute as a independent process). How does it communicate with the web server? IPC? and interfacing with all the servers (in my example MATLAB & MySQL) using socket programming? I'm lost!! People say that CGI is deprecated and isn't in use anymore. Is that so? What is the latest update?

Once, I ran into a situation where I had to give HTTP PUT request access to web server (Apache HTTPD). Its a long back. So, as far as I remember this is what I did: Edited the configuration file of Apache HTTPD to tell webserver to pass all HTTP PUT requests to some put.php ( I had to write this PHP script) Implement put.php to handle the request (save the file to the location mentioned) People said that I wrote a CGI Script. Seriously, I didn't have a clue what they were talking about.

我真的写了CGI脚本吗?

我希望你能理解我的困惑。(因为我自己也不知道我在哪里感到困惑)。我要求你们的回答尽量简单。我真的不懂任何花哨的专业术语。至少在这种情况下不是。

编辑:

我发现了这个神奇的教程“CGI编程很简单!”- CGI教程,以最简单的方式解释概念。阅读完本文后,您可能想要阅读C语言CGI编程入门,用实际的代码示例来补充您的理解。我还在维基百科的文章中添加了本教程的链接:http://en.wikipedia.org/wiki/Common_Gateway_Interface


当前回答

A CGI script is a console/shell program. In Windows, when you use a "Command Prompt" window, you execute console programs. When a web server executes a CGI script it provides input to the console/shell program using environment variables or "standard input". Standard input is like typing data into a console/shell program; in the case of a CGI script, the web server does the typing. The CGI script writes data out to "standard output" and that output is sent to the client (the web browser) as a HTML page. Standard output is like the output you see in a console/shell program except the web server reads it and sends it out.

CGI脚本可以在浏览器中执行。URI通常包含提供给CGI脚本的查询字符串。如果方法是“get”,那么查询字符串将在名为QUERY_STRING的环境变量中提供给CGI脚本。如果方法是"post",则使用标准输入将查询字符串提供给CGI Script (CGI Script从标准输入读取查询字符串)。

CGI脚本的早期用途是处理表单。在HTML的初期,HTML表单通常有一个“action”属性和一个指定为“submit”按钮的按钮。当提交按钮被按下时,“action”属性中指定的URI将被发送到服务器,表单中的数据将作为查询字符串发送。如果“action”指定了一个CGI脚本,那么CGI脚本将被执行,然后生成一个HTML页面。

RFC 3875“通用网关接口(CGI)”部分定义了使用C语言的CGI,比如说环境变量“可以通过C库例程getenv()或变量environ来访问”。

如果你正在使用C/ c++开发CGI脚本,并使用Microsoft Visual Studio来完成,那么你将开发一个控制台程序。

其他回答

CGI背后的思想是程序/脚本(无论是Perl还是C)通过STDIN(请求数据)接收输入,并通过STDOUT (echo, printf语句)输出数据。

大多数PHP脚本不合格的原因是它们是在PHP Apache模块下运行的。

CGI本质上是将请求传递给任何配置了web服务器的解释器-这可能是Perl, Python, PHP, Ruby, C几乎任何东西。Perl在过去是最常见的,这就是为什么你经常在CGI中看到它。

CGI并没有死。事实上,大多数大型托管公司将PHP作为CGI而不是mod_php运行,因为它提供用户级配置和其他一些东西,而它比mod_php慢。Ruby和Python通常也以CGI的形式运行。这里的关键区别是服务器模块作为实际服务器软件的一部分运行,而与CGI一样,它完全在服务器之外。服务器只是使用CGI模块来决定如何向外部解释器传递和接收数据。

CGI是您编写的程序(或Web API),并将其保存在Web服务器站点上。CGI是一个文件。

该文件在Web服务器上等待。当客户端浏览器向Web服务器发送请求以执行您的CGI文件时,Web服务器在服务器站点上运行您的CGI文件。这个CGI程序的输入(如果有的话)来自客户机浏览器。这个CGI程序的输出被发送到浏览器。

你用什么语言写CGI程序?其他的文章已经提到了c,java, php, perl等。

你可能想知道什么不是CGI,答案是你的web服务器的MODULE(如果我假设你在运行Apache)。这是一个很大的区别,因为CGI需要一个外部程序,线程,等等来实例化一个PERL, PHP, C应用服务器,当你作为一个模块运行时,这个程序就是web服务器(apache)本身。

由于这一切,有很多性能、安全性、可移植性问题开始发挥作用。但是最好先知道什么不是CGI,理解它是什么。

在维基百科上看看CGI。CGI是web服务器和外部程序或脚本之间的协议,用于处理输入并生成发送到浏览器的输出。

CGI只是网络服务器和程序进行通信的一种简单方式,仅此而已。在这里,服务器管理网络连接和HTTP协议,程序处理输入并生成发送到浏览器的输出。CGI脚本基本上可以是任何可以由web服务器执行并遵循CGI协议的程序。因此,一个CGI程序可以实现,例如,在C。但这是极其罕见的,因为C不是很适合这项任务。

/ CGI -bin/*. CGI是一个简单的路径,人们通常把他们的CGI脚本。Web服务器通常默认配置为从该路径获取CGI脚本。

CGI脚本也可以在PHP中实现,但并非所有PHP程序都是CGI脚本。如果web服务器有嵌入式PHP解释器(例如Apache中的mod_php),那么web服务器和解释器之间更有效的直接协议跳过了CGI阶段。

你是否实现了CGI脚本取决于你的脚本是如何被web服务器执行的。