溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器

發(fā)布時間:2021-01-29 16:26:08 來源:億速云 閱讀:142 作者:Leah 欄目:開發(fā)技術(shù)

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1.客戶端通過發(fā)送一個 http 請求到服務(wù)器,如果服務(wù)器監(jiān)聽的端口號是9002,那么在本機自身測試訪問的地址就是 http://localhost:9002/1.html 。

2.服務(wù)器監(jiān)聽著9002端口,那么在收到請求了請求之后,就能從 http head 頭中獲取到請求里需要訪問的 uri 資源在web 目錄中的位置。

3.服務(wù)器讀取需要訪問的資源文件,然后填充到 http 的實體中返回給客戶端。

示意圖如下:

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器

php
<?php
class web_config {
 // 監(jiān)聽的端口號
 const PORT = 9003;
 // 項目根目錄
 const WEB_ROOT = "/Users/zhoumengkang/Documents/html";
}
class server {
 private $ip;
 private $port;
 public function __construct($ip, $port) {
 $this->ip = $ip;
 $this->port = $port;
 $this->await();
 }
 private function await() {
 $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
 if ($sock < 0) {
 echo "Error:" . socket_strerror(socket_last_error()) . "\n";
 }
 $ret = socket_bind($sock, $this->ip, $this->port);
 if (!$ret) {
 echo "BIND FAILED:" . socket_strerror(socket_last_error()) . "\n";
 exit;
 }
 echo "OK\n";
 $ret = socket_listen($sock);
 if ($ret < 0) {
 echo "LISTEN FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 do {
 $new_sock = null;
 try {
 $new_sock = socket_accept($sock);
 } catch (Exception $e) {
 echo $e->getMessage();
 echo "ACCEPT FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 try {
 $request_string = socket_read($new_sock, 1024);
 $response = $this->output($request_string);
 socket_write($new_sock, $response);
 socket_close($new_sock);
 } catch (Exception $e) {
 echo $e->getMessage();
 echo "READ FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 } while (TRUE);
 }
 /**
 * @param $request_string
 * @return string
 */
 private function output($request_string){
 // 靜態(tài) GET /1.html HTTP/1.1 ...
 $request_array = explode(" ",$request_string);
 if(count($request_array) < 2){
 return $this->not_found();
 }
 $uri = $request_array[1];
 $filename = web_config::WEB_ROOT . $uri;
 echo "request:".$filename."\n";
 // 靜態(tài)文件的處理
 if (file_exists($filename)) {
 return $this->add_header(file_get_contents($filename));
 } else {
 return $this->not_found();
 }
 }
 /**
 * 404 返回
 * @return string
 */
 private function not_found(){
 $content = "
<h2>File Not Found </h2>
";
 return "HTTP/1.1 404 File Not Found\r\nContent-Type: text/html\r\nContent-Length: ".strlen($content)."\r\n\r\n".$content;
 }
 /**
 * 加上頭信息
 * @param $string
 * @return string
 */
 private function add_header($string){
 return "HTTP/1.1 200 OK\r\nContent-Length: ".strlen($string)."\r\nServer: mengkang\r\n\r\n".$string;
 }
}
$server = new server("127.0.0.1", web_config::PORT);

代碼已經(jīng)上傳 github https://github.com/zhoumengkang/php/tree/master/php-webserver/static

如上代碼所述,只要在終端執(zhí)行該文件,那么一個靜態(tài)的 web 服務(wù)器就啟動啦。

下圖為我訪問我 web 目錄下的1.jpg文件的截圖

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器

簡單的靜態(tài) web 服務(wù)器已經(jīng)完成了,下面的問題就是怎么讓其支持動態(tài)內(nèi)容的輸出了。是不是只需要在 web 服務(wù)器內(nèi)部執(zhí)行完某個程序之后,把得到的結(jié)果返回給客戶端就行呢?但是這樣 web 服務(wù)器的代碼就和業(yè)務(wù)代碼耦合在一起了,怎么解決一個 web 服務(wù)器,可以運用在各個業(yè)務(wù)場景下呢?

CGI 的出現(xiàn)解決了這一問題。那么 CGI 是什么呢?下面這段話復(fù)制的:

CGI是外部應(yīng)用程序(CGI程序)與Web服務(wù)器之間的接口標準,是在CGI程序和Web服務(wù)器之間傳遞信息的規(guī)程。CGI規(guī)范允許Web服務(wù)器執(zhí)行外部程序,并將它們的輸出發(fā)送給Web瀏覽器,CGI將Web的一組簡單的靜態(tài)超媒體文檔變成一個完整的新的交互式媒體。

好暈,舉個具體的例子,比如我們在使用的 PHP 的全局變量 $_SERVER['QUERY_STRING'] 就是 Web 服務(wù)器通過 CGI 協(xié)議之上,傳遞過來的。例如在 Nginx 中,也許你記得這樣的 fastcgi 配置

復(fù)制代碼 代碼如下:


fastcgi_param 
QUERY_STRING     
 $query_string;

沒錯 nginx 把自己的全局變量 $query_string 傳遞給了 fastcgi_param 的環(huán)境變量中。

下面我們也以 CGI 的 QUERY_STRING 作為橋梁,將客戶端請求的 uri 中的信息傳遞到 cgi 程序中去。通過 putenv 的方式把 QUERY_STRING 存入該請求的環(huán)境變量中。

我們約定 Web 服務(wù)器中訪問的資源是 .cgi 后綴則表示是動態(tài)訪問,這一點有點兒類似于 nginx 里配置 location 來尋找 php 腳本程序一樣。都是一種檢查是否應(yīng)該請求 cgi 程序的規(guī)則。為了和 Web 服務(wù)器區(qū)別開來,我用 C 寫了一個查詢用戶信息的 cgi 程序,根據(jù)用戶 id 查詢用戶資料。

大致的訪問邏輯如下圖

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器

演示代碼地址: https://github.com/zhoumengkang/php/tree/master/php-webserver/dynamic

如果要運行該 demo 需要做如下操作

1.修改 config.php 里的項目根目錄 WEB_ROOT

2.編譯 cgi-demo\user.c ,編譯命令 gcc -o user.cgi user.c ,然后將 user.cgi 文件放入你配置的項目根目錄下面

3.在終端執(zhí)行 php start.php ,這樣該 web 服務(wù)器就啟動了

4.通過 http://localhost:9003/user.cgi?id=1 就可以訪問看到如下效果了

使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器

其實只是在靜態(tài)服務(wù)器的基礎(chǔ)上做了一些 cgi 的判斷是請求的轉(zhuǎn)發(fā)處理,把github 上的三個文件的代碼合并到一個文件里方便大家觀看

php
<?php
class web_config {
 // 監(jiān)聽的端口號
 const PORT = 9003;
 // 項目根目錄
 const WEB_ROOT = "/Users/zhoumengkang/Documents/html";
 // 系統(tǒng)支持的 cgi 程序的文件擴展名
 const CGI_EXTENSION = "cgi";
}
class server {
 private $ip;
 private $port;
 public function __construct($ip, $port) {
 $this->ip = $ip;
 $this->port = $port;
 $this->await();
 }
 private function await() {
 $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
 if ($sock < 0) {
 echo "Error:" . socket_strerror(socket_last_error()) . "\n";
 }
 $ret = socket_bind($sock, $this->ip, $this->port);
 if (!$ret) {
 echo "BIND FAILED:" . socket_strerror(socket_last_error()) . "\n";
 exit;
 }
 echo "OK\n";
 $ret = socket_listen($sock);
 if ($ret < 0) {
 echo "LISTEN FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 do {
 $new_sock = null;
 try {
 $new_sock = socket_accept($sock);
 } catch (Exception $e) {
 echo $e->getMessage();
 echo "ACCEPT FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 try {
 $request_string = socket_read($new_sock, 1024);
 $response = $this->output($request_string);
 socket_write($new_sock, $response);
 socket_close($new_sock);
 } catch (Exception $e) {
 echo $e->getMessage();
 echo "READ FAILED:" . socket_strerror(socket_last_error()) . "\n";
 }
 } while (TRUE);
 }
 /**
 * @param $request_string
 * @return string
 */
 private function output($request_string){
 // 靜態(tài) GET /1.html HTTP/1.1 ...
 // 動態(tài) GET /user.cgi?id=1 HTTP/1.1 ...
 $request_array = explode(" ",$request_string);
 if(count($request_array) < 2){
 return "";
 }
 $uri = $request_array[1];
 echo "request:".web_config::WEB_ROOT . $uri."\n";
 $query_string = null;
 if ($uri == "/favicon.ico") {
 return "";
 }
 if (strpos($uri,"?")) {
 $uriArr = explode("?", $uri);
 $uri = $uriArr[0];
 $query_string = isset($uriArr[1]) ? $uriArr[1] : null;
 }
 $filename = web_config::WEB_ROOT . $uri;
 if ($this->cgi_check($uri)) {
 $this->set_env($query_string);
 $handle = popen(web_config::WEB_ROOT.$uri, "r");
 $read = stream_get_contents($handle);
 pclose($handle);
 return $this->add_header($read);
 }
 // 靜態(tài)文件的處理
 if (file_exists($filename)) {
 return $this->add_header(file_get_contents($filename));
 } else {
 return $this->not_found();
 }
 }
 /**
 * 設(shè)置環(huán)境變量 給 cgi 程序使用
 * @param $query_string
 * @return bool
 */
 private function set_env($query_string){
 if($query_string == null){
 return false;
 }
 if (strpos($query_string, "=")) {
 putenv("QUERY_STRING=".$query_string);
 }
 }
 /**
 * 判斷請求的 uri 是否是合法的 cgi 資源
 * @param $uri
 * @return bool
 */
 private function cgi_check($uri){
 $info = pathinfo($uri);
 $extension = isset($info["extension"]) ? $info["extension"] : null;
 if( $extension && in_array($extension,explode(",",web_config::CGI_EXTENSION))){
 return true;
 }
 return false;
 }
 /**
 * 404 返回
 * @return string
 */
 private function not_found(){
 $content = "<h2>File Not Found </h2>";
 return "HTTP/1.1 404 File Not Found\r\nContent-Type: text/html\r\nContent-Length: ".strlen($content)."\r\n\r\n".$content;
 }
 /**
 * 加上頭信息
 * @param $string
 * @return string
 */
 private function add_header($string){
 return "HTTP/1.1 200 OK\r\nContent-Length: ".strlen($string)."\r\nServer: mengkang\r\n\r\n".$string;
 }
}
$server = new server("127.0.0.1", web_config::PORT);

關(guān)于使用PHP怎么實現(xiàn)一個動態(tài)web服務(wù)器問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI