search
HomeBackend DevelopmentPHP TutorialHow to use PHP to implement a dynamic web server, php dynamic web server_PHP tutorial

How to use PHP to implement a dynamic web server, php dynamic web server

If you want to implement a web server, you need to have a general understanding of the operating principles of the web server. Let’s start with a static text server, taking accessing 1.html of the web server as an example

1. The client sends an http request to the server. If the port number the server listens to is 9002, then the address for testing access on the machine itself is http://localhost:9002/1.html.

2. The server listens to port 9002. After receiving the request, it can obtain the location in the web directory of the uri resource that needs to be accessed in the request from the http header.

3. The server reads the resource file that needs to be accessed, and then fills it into the http entity and returns it to the client.

The schematic diagram is as follows:

<&#63;php
class web_config {
  // 监听的端口号
  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){
    // 静态 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";
    // 静态文件的处理
    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 = "

<h1 id="File-Not-Found">File Not Found </h1>

";
    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);

As mentioned in the above code, as long as the file is executed in the terminal, a static web server will be started.

The picture below is a screenshot of me accessing the 1.jpg file in my web directory

The simple static web server has been completed. The next question is how to make it support the output of dynamic content. Do we only need to execute a certain program inside the web server and return the result to the client? But in this way, the web server code is coupled with the business code. How to solve a web server that can be used in various business scenarios?

The advent of CGI solved this problem. So what is CGI? The following paragraph is copied:

CGI is an interface standard between external applications (CGI programs) and Web servers. It is a procedure for transferring information between CGI programs and Web servers. The CGI specification allows Web servers to execute external programs and send their output to Web browsers. CGI turns the Web's set of simple static hypermedia documents into a complete new interactive media.

How dizzying, to give a specific example, for example, the PHP global variable $_SERVER['QUERY_STRING'] we are using is passed by the web server through the CGI protocol. For example, in Nginx, maybe you remember this fastcgi configuration

fastcgi_param QUERY_STRING $query_string;

Yes nginx passes its global variable $query_string to the environment variable of fastcgi_param.

Below we also use CGI's QUERY_STRING as a bridge to pass the information in the uri requested by the client to the cgi program. Store QUERY_STRING in the environment variable of the request through putenv.

We agree that the resources accessed in the web server have the .cgi suffix to indicate dynamic access. This is somewhat similar to configuring location in nginx to find php scripts. It's all a rule to check whether a cgi program should be requested. In order to distinguish it from the web server, I wrote a cgi program in C to query user information and query user information based on user id.

The general access logic is as follows

Demo code address: https://github.com/zhoumengkang/php/tree/master/php-webserver/dynamic

If you want to run the demo, you need to do the following

1. Modify the project root directory WEB_ROOT in config.php

2. Compile cgi-demouser.c, compile the command gcc -o user.cgi user.c, and then put the user.cgi file under the root directory of your configured project

3. Execute php start.php in the terminal, so that the web server will be started

4. You can access through http://localhost:9003/user.cgi?id=1 and see the following effect

In fact, I just did some cgi based on the static server to judge the request forwarding processing, and merged the codes of the three files on github into one file for everyone to watch

<&#63;php
class web_config {

  // 监听的端口号
  const PORT = 9003;

  // 项目根目录
  const WEB_ROOT = "/Users/zhoumengkang/Documents/html";

  // 系统支持的 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){
    // 静态 GET /1.html HTTP/1.1 ...
    // 动态 GET /user.cgi&#63;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,"&#63;")) {
      $uriArr = explode("&#63;", $uri);
      $uri = $uriArr[0];
      $query_string = isset($uriArr[1]) &#63; $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);
    }
    // 静态文件的处理
    if (file_exists($filename)) {
      return $this->add_header(file_get_contents($filename));
    } else {
      return $this->not_found();
    }
  }
  /**
   * 设置环境变量 给 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"]) &#63; $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 = "<h1 id="File-Not-Found">File Not Found </h1>";
    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);

The above is the entire implementation process of implementing a dynamic web server in PHP. I hope it will be helpful to everyone's learning.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1039198.htmlTechArticleHow to use PHP to implement a dynamic web server. If the php dynamic web server implements a web server, then you need about Understand how web servers work. Let’s start with the static text...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!